- for submitQuery operation attributes names added in the csv file. submitQuery method modified in GWTdbManagerServiceImpl class.
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@100962 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
695e8c423e
commit
260ce2c6e6
|
@ -721,8 +721,7 @@ public class GWTdbManagerServiceImpl extends RemoteServiceServlet implements
|
||||||
throw new Exception(
|
throw new Exception(
|
||||||
"Error in server while loading data.");
|
"Error in server while loading data.");
|
||||||
}
|
}
|
||||||
// remove the header in order to parse only the result
|
|
||||||
output.remove(0);
|
|
||||||
// store the result of the submit query operation
|
// store the result of the submit query operation
|
||||||
// updateSubmitQueryResultMap(UID, output);
|
// updateSubmitQueryResultMap(UID, output);
|
||||||
// remove job with the specified uid
|
// remove job with the specified uid
|
||||||
|
@ -748,6 +747,9 @@ public class GWTdbManagerServiceImpl extends RemoteServiceServlet implements
|
||||||
keyData, result);
|
keyData, result);
|
||||||
insertDataIntoCache(dataToCache);
|
insertDataIntoCache(dataToCache);
|
||||||
|
|
||||||
|
// remove the header in order to parse only the result
|
||||||
|
output.remove(0);
|
||||||
|
|
||||||
net.sf.ehcache.Element submitQueryResultToCache = new net.sf.ehcache.Element(
|
net.sf.ehcache.Element submitQueryResultToCache = new net.sf.ehcache.Element(
|
||||||
keySubmitQueryResult, output);
|
keySubmitQueryResult, output);
|
||||||
insertDataIntoCache(submitQueryResultToCache);
|
insertDataIntoCache(submitQueryResultToCache);
|
||||||
|
|
Loading…
Reference in New Issue