Skip to content

Commit

Permalink
Removed JobMixin.job_id
Browse files Browse the repository at this point in the history
  • Loading branch information
rexissimus committed Nov 18, 2014
1 parent 57d480b commit 285d1f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions vistrails/core/vistrail/job.py
Expand Up @@ -177,15 +177,6 @@ def job_get_handle(self, params):
"""
return None

def job_id(self, params):
""" Implemented by modules to return a unique identifier for the job.
This returns a string that completely identifies this job.
Deprecated, don't use this in new modules
"""
return self.signature

def job_name(self):
""" Readable name for the job.
Expand Down
2 changes: 1 addition & 1 deletion vistrails/packages/RemoteQ/init.py
Expand Up @@ -130,7 +130,7 @@ def get_job_machine(self):
""" Get machine info from job
"""
jm = self.job_monitor()
if jm.hasJob(self.job_id({})):
if jm.hasJob(self.signature):
params = jm.getJob(self.signature).parameters
if 'server' in params:
return (params['server'],
Expand Down

0 comments on commit 285d1f9

Please sign in to comment.