Fixes 22722
This commit is contained in:
parent
9cd78d4c4a
commit
e85303c809
|
@ -2,6 +2,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
# Changelog for org.gcube.application.geoportal-client
|
||||
|
||||
## [v1.0.7-SNAPSHOT] - 2022-02-01
|
||||
- Fixes #22722
|
||||
|
||||
## [v1.0.6] - 2021-09-20
|
||||
- Changed artifact dependencies
|
||||
- Default Profiled Documents client
|
||||
|
@ -20,7 +23,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
- Stateful Concessioni Manager client over mongo
|
||||
|
||||
## [v1.0.2] - 2020-11-11
|
||||
- Fixed dulicate dependency declaration
|
||||
- Fixed duplicate dependency declaration
|
||||
|
||||
## [v1.0.1] - 2020-11-11
|
||||
-Excluded common-calls 1.2.0
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.gcube.application</groupId>
|
||||
<artifactId>geoportal-client</artifactId>
|
||||
<version>1.0.6</version>
|
||||
<version>1.0.7-SNAPSHOT</version>
|
||||
<name>Geoportal Client</name>
|
||||
|
||||
|
||||
|
|
|
@ -211,7 +211,6 @@ public class DefaultMongoConcessioni implements MongoConcessioni{
|
|||
String resString=resp.readEntity(String.class);
|
||||
if(resp.getStatus()<200||resp.getStatus()>=300)
|
||||
throw new RemoteException("RESP STATUS IS "+resp.getStatus()+". Message : "+resString);
|
||||
System.out.println("Resp String is "+resString);
|
||||
if(clazz!=null)
|
||||
return Serialization.read(resString, clazz);
|
||||
else return null;
|
||||
|
|
|
@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
# [v1.0.9-SNAPSHOT] - 2022-01-17
|
||||
- Minor fixes in model
|
||||
- Schema and jsonPath support
|
||||
- Fixes [#22722](https://support.d4science.org/issues/22722)
|
||||
|
||||
# [v1.0.8] - 2021-11-10
|
||||
- Fixes [#22369](https://support.d4science.org/issues/22369)
|
||||
|
|
|
@ -77,7 +77,6 @@ public class FileSets {
|
|||
public static RegisterFileSetRequest prepareRequestFromFolder(StorageUtils storage, String path, File directory) throws FileNotFoundException {
|
||||
|
||||
File[] children =directory.listFiles();
|
||||
System.out.println("Found "+children+ " files to push");
|
||||
InputStreamDescriptor[] iss=new InputStreamDescriptor[children.length];
|
||||
return prepareRequest(storage,path,children);
|
||||
|
||||
|
|
Loading…
Reference in New Issue