Skip to content
Snippets Groups Projects
Commit 9f97a1f2 authored by Martin Gels's avatar Martin Gels
Browse files

BugID:1005

Bug fix.
parent 458ae7dc
Branches
Tags
No related merge requests found
...@@ -2,7 +2,6 @@ import Hosts ...@@ -2,7 +2,6 @@ import Hosts
import time import time
import os import os
class Job(object): class Job(object):
""" """
Represents a run of some program. Represents a run of some program.
...@@ -20,6 +19,8 @@ class Job(object): ...@@ -20,6 +19,8 @@ class Job(object):
self.runlog = runlog self.runlog = runlog
self.runLogRetreived = False self.runLogRetreived = False
self.host.sput(parsetfile, '~/') self.host.sput(parsetfile, '~/')
tmp = '~/LOFAR/Appl/CEP/CS1/' + self.name + '/src/' + self.name + '.log_prop'
self.host.sput(tmp, '~/')
self.host.sput('OLAP.parset', '~/') self.host.sput('OLAP.parset', '~/')
if runCmd == None: if runCmd == None:
runCmd = self.executable runCmd = self.executable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment