Skip to content
Snippets Groups Projects
Commit 29874857 authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

fix: migration to dd-18-42

parent 0e87b0d4
No related branches found
No related tags found
No related merge requests found
...@@ -199,7 +199,7 @@ common: { ...@@ -199,7 +199,7 @@ common: {
# beanshell and snakefile diretory # beanshell and snakefile diretory
# directory for cuda libraries # directory for cuda libraries
# xvfb setting # xvfb setting
sysconfcpus: "/scratch/work/project/open-12-20/haas/spim/bin/sysconfcpus -n", # sysconfcpus
# ============================================================================ # ============================================================================
# current working Fiji # current working Fiji
fiji-app: "/scratch/work/project/open-12-20/haas/spim/Fiji.app/ImageJ-linux64 -Xss4m", fiji-app: "/scratch/work/project/open-12-20/haas/spim/Fiji.app/ImageJ-linux64 -Xss4m",
......
...@@ -6,7 +6,6 @@ import java.util.List; ...@@ -6,7 +6,6 @@ import java.util.List;
public interface JobInfo { public interface JobInfo {
Collection<Long> getTasks(); Collection<Long> getTasks();
JobState getState(); JobState getState();
......
...@@ -14,7 +14,7 @@ public interface Constants { ...@@ -14,7 +14,7 @@ public interface Constants {
String HAAS_JOB_NAME = "HaaSSPIMBenchmark"; String HAAS_JOB_NAME = "HaaSSPIMBenchmark";
int HAAS_CLUSTER_NODE_TYPE = 7; int HAAS_CLUSTER_NODE_TYPE = 7;
int HAAS_TEMPLATE_ID = 4; int HAAS_TEMPLATE_ID = 4;
String HAAS_PROJECT_ID = ""; String HAAS_PROJECT_ID = "DD-18-42";
int HAAS_TIMEOUT = 3600; //Walltime in seconds int HAAS_TIMEOUT = 3600; //Walltime in seconds
long WAIT_FOR_SUBMISSION_TIMEOUT = 100; long WAIT_FOR_SUBMISSION_TIMEOUT = 100;
String BDS_ADDRESS = "http://julius2.it4i.cz/"; String BDS_ADDRESS = "http://julius2.it4i.cz/";
......
...@@ -402,7 +402,7 @@ public class ScpClient implements Closeable { ...@@ -402,7 +402,7 @@ public class ScpClient implements Closeable {
IOException, InterruptedIOException IOException, InterruptedIOException
{ {
AckowledgementChecker ack = new AckowledgementChecker(); AckowledgementChecker ack = new AckowledgementChecker();
boolean ptimestamp = true; boolean ptimestamp = false;
// exec 'scp -t rfile' remotely // exec 'scp -t rfile' remotely
String command = "scp " + (ptimestamp ? "-p" : "") + " -t '" + fileName + "'"; String command = "scp " + (ptimestamp ? "-p" : "") + " -t '" + fileName + "'";
Channel channel = getConnectedSession().openChannel("exec"); Channel channel = getConnectedSession().openChannel("exec");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment