git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/dataminer-pool-manager@155028 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
c20472bbc9
commit
58cb07dc26
|
@ -85,9 +85,10 @@ public class CheckMethod ***REMOVED***
|
|||
|
||||
|
||||
public boolean algoExists(Algorithm a/*, String env*/) throws Exception***REMOVED***
|
||||
|
||||
File file = new File("/home/gcube/wps_algorithms/algorithms/"+a.getName()+".jar");
|
||||
File file2 = new File("/home/gcube/wps_algorithms/algorithms/"+a.getName()+"_interface.jar");
|
||||
ServiceConfiguration p = new ServiceConfiguration();
|
||||
|
||||
File file = new File(p.getGhostAlgoDirectory()+"/"+a.getName()+".jar");
|
||||
File file2 = new File(p.getGhostAlgoDirectory()+"/"+a.getName()+"_interface.jar");
|
||||
|
||||
|
||||
System.out.println("First file is located to: "+file.getPath());
|
||||
|
@ -115,8 +116,8 @@ public class CheckMethod ***REMOVED***
|
|||
ServiceConfiguration p = new ServiceConfiguration();
|
||||
System.out.println("checking existing in env: " + p.getStagingHost());
|
||||
|
||||
File file = new File("/home/gcube/wps_algorithms/algorithms/"+a.getName()+".jar");
|
||||
File file2 = new File("/home/gcube/wps_algorithms/algorithms/"+a.getName()+"_interface.jar");
|
||||
File file = new File(p.getGhostAlgoDirectory()+"/"+a.getName()+".jar");
|
||||
File file2 = new File(p.getGhostAlgoDirectory()+"/"+a.getName()+"_interface.jar");
|
||||
|
||||
|
||||
System.out.println("First file is located to: "+file.getPath());
|
||||
|
@ -244,12 +245,12 @@ public class CheckMethod ***REMOVED***
|
|||
|
||||
ChannelSftp sftp = (ChannelSftp) channel;
|
||||
|
||||
sftp.cd("/home/gcube/wps_algorithms/algorithms/");
|
||||
sftp.cd(p.getGhostAlgoDirectory());
|
||||
|
||||
System.out.println("REMOTE : /home/gcube/wps_algorithms/algorithms/"+a.getName());
|
||||
System.out.println("REMOTE : "+p.getGhostAlgoDirectory()+"/"+a.getName());
|
||||
System.out.println("LOCAL : /tmp/"+a.getName());
|
||||
|
||||
sftp.get("/home/gcube/wps_algorithms/algorithms/"+a.getName(),"/tmp/"+a.getName());
|
||||
sftp.get(p.getGhostAlgoDirectory()+"/"+a.getName(),"/tmp/"+a.getName());
|
||||
|
||||
channel.disconnect();
|
||||
session.disconnect();
|
||||
|
|
|
@ -560,9 +560,9 @@ public class SVNUpdater ***REMOVED***
|
|||
***REMOVED***to fix in next release: if the file is not present for that language in the service.properties then skip and return null list of string
|
||||
***REMOVED***just to uncomment the following lines
|
||||
|
||||
***REMOVED***if(file.isEmpty())***REMOVED***
|
||||
***REMOVED***return undefined;
|
||||
***REMOVED******REMOVED***
|
||||
if(file.isEmpty())***REMOVED***
|
||||
return undefined;
|
||||
***REMOVED***
|
||||
|
||||
|
||||
System.out.println("Checking dependencies list: " + file);
|
||||
|
|
|
@ -55,6 +55,11 @@ public class ServiceConfiguration ***REMOVED***
|
|||
***REMOVED***
|
||||
|
||||
|
||||
public String getGhostAlgoDirectory()***REMOVED***
|
||||
return props.getProperty("svn.algo.ghost.repo");
|
||||
***REMOVED***
|
||||
|
||||
|
||||
|
||||
***REMOVED***RProto
|
||||
***REMOVED*** public String getSVNRProtoAlgorithmsList()***REMOVED***
|
||||
|
|
Loading…
Reference in New Issue