in class GWTdbManagerServiceImpl the time in startComputation method has been modified from 1 second to 3 seconds

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@99150 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Loredana Liccardo 2014-07-31 10:40:20 +00:00
parent 4c457cfd7e
commit 4837482f5d
1 changed files with 1 additions and 1 deletions

View File

@ -949,7 +949,7 @@ public class GWTdbManagerServiceImpl extends RemoteServiceServlet implements
while (percentage < 100) {
percentage = checkComputationStatus(scope, computationId,
username, outputData);
Thread.sleep(1000);
Thread.sleep(3000);
}
return computationId;
} catch (Exception e) {