Skip to content
Snippets Groups Projects
Commit 4022ea86 authored by felmer's avatar felmer
Browse files

SSDM-8347: core-plugin 'search-store' enabled by default

parent 5a305583
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ import ch.systemsx.cisd.common.shared.basic.string.CommaSeparatedListBuilder; ...@@ -39,7 +39,7 @@ import ch.systemsx.cisd.common.shared.basic.string.CommaSeparatedListBuilder;
public class SetEnableTechnologiesVariableAction implements PanelAction public class SetEnableTechnologiesVariableAction implements PanelAction
{ {
static final String[] MODULES = { "monitoring-support", "dropbox-monitor", "dataset-uploader", static final String[] MODULES = { "monitoring-support", "dropbox-monitor", "dataset-uploader",
"dataset-file-search", "xls-import", "openbis-sync" }; "dataset-file-search", "xls-import", "search-store", "openbis-sync" };
static final String ENABLED_TECHNOLOGIES_VARNAME = "ENABLED_TECHNOLOGIES"; static final String ENABLED_TECHNOLOGIES_VARNAME = "ENABLED_TECHNOLOGIES";
......
...@@ -75,7 +75,7 @@ def list_all_files(source_root_path): ...@@ -75,7 +75,7 @@ def list_all_files(source_root_path):
api = CommonServiceProvider.getApplicationContext().getBean(ApplicationServerApi.INTERNAL_SERVICE_NAME) api = CommonServiceProvider.getApplicationContext().getBean(ApplicationServerApi.INTERNAL_SERVICE_NAME)
sessionToken = api.loginAsSystem() sessionToken = api.loginAsSystem()
props = CustomASServiceExecutionOptions().withParameter('xls', list_xls_byte_arrays()).withParameter('scripts', get_all_scripts()) props = CustomASServiceExecutionOptions().withParameter('xls', list_xls_byte_arrays()).withParameter('update_mode', 'IGNORE_EXISTING').withParameter('scripts', get_all_scripts())
result = api.executeCustomASService(sessionToken, CustomASServiceCode("xls-import-api"), props); result = api.executeCustomASService(sessionToken, CustomASServiceCode("xls-import-api"), props);
print("======================== master-data xls ingestion result ========================") print("======================== master-data xls ingestion result ========================")
print(result) print(result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment