Skip to content
Snippets Groups Projects
Commit 60eab91d authored by felmer's avatar felmer
Browse files

SSDM-555: Fixing bug: Use the same UUID for all new data store servers...

SSDM-555: Fixing bug: Use the same UUID for all new data store servers registered in ServiceForDataStoreServer.registerDataStoreServer().

SVN: 32084
parent 8e06c595
No related branches found
No related tags found
No related merge requests found
......@@ -389,7 +389,7 @@ public class ServiceForDataStoreServer extends AbstractCommonServer<IServiceForD
if (dataStore == null)
{
dataStore = new DataStorePE();
dataStore.setDatabaseInstanceUUID(UUID.randomUUID().toString().toUpperCase());
dataStore.setDatabaseInstanceUUID(getDatabaseInstanceUUID());
}
dataStore.setCode(info.getDataStoreCode());
dataStore.setDownloadUrl(info.getDownloadUrl());
......
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