new Thread(new Runnable() {
@Override
public void run() {
LOG.info("Starting marketplace service");
MarketPlaceService mps = MarketPlaceService.getInstance();
onlinePluginCategories = mps.getCategoryList();
}
}).start();
}
});
} catch (Exception e) {