ref #11879: TDM - Update to StorageHUB
https://support.d4science.org/issues/#11879 Updated to StorageHub git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@171472 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
bf57479c64
commit
d22dddbdaf
|
@ -45,7 +45,7 @@ public class FilesStorage {
|
|||
String remotePath = "/CSVimport/" + file.getName();
|
||||
logger.debug("remotePath: " + remotePath);
|
||||
String id = client.put(true).LFile(file.getAbsolutePath()).RFile(remotePath);
|
||||
client.close();
|
||||
//client.close();
|
||||
|
||||
return id;
|
||||
|
||||
|
@ -70,7 +70,7 @@ public class FilesStorage {
|
|||
String remotePath = "/CodelistMappingImport/" + file.getName();
|
||||
logger.debug("remotePath: " + remotePath);
|
||||
String id = client.put(true).LFile(file.getAbsolutePath()).RFile(remotePath);
|
||||
client.close();
|
||||
//client.close();
|
||||
return id;
|
||||
} catch (Throwable e) {
|
||||
logger.error("Error no codelist mapping file loaded on storage" + e.getLocalizedMessage());
|
||||
|
@ -100,7 +100,7 @@ public class FilesStorage {
|
|||
String remotePath = "/CodelistMappingImport/" + address.getFile();
|
||||
logger.debug("remotePath: " + remotePath);
|
||||
id = client.put(true).LFile(is).RFile(remotePath);
|
||||
client.close();
|
||||
//client.close();
|
||||
}
|
||||
|
||||
return id;
|
||||
|
@ -256,7 +256,7 @@ public class FilesStorage {
|
|||
AbstractFileItem afi = fileContainer.get();
|
||||
logger.debug("Created file on workspace: " + afi.getId());
|
||||
}
|
||||
client.close();
|
||||
//client.close();
|
||||
|
||||
} catch (Throwable e) {
|
||||
logger.error("Error creating item on workspace: " + e.getLocalizedMessage(), e);
|
||||
|
|
Loading…
Reference in New Issue