Skip to content

Commit

Permalink
Fix "AttributeError: 'Run' object has no attribute 'os_instance_id'"
Browse files Browse the repository at this point in the history
Due to a typo introduced in commit b43ad26
  • Loading branch information
riccardomurri committed Sep 6, 2016
1 parent 4228603 commit 74bb7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gc3libs/backends/openstack.py
Expand Up @@ -932,7 +932,7 @@ def submit_job(self, job):
if vm.image['id'] != image_id:
continue
subresource.submit_job(job)
job.execution.instance_id = vm_id
job.execution.os_instance_id = vm_id
job.changed = True
gc3libs.log.info(
"Job successfully submitted to remote resource %s.",
Expand Down

0 comments on commit 74bb7e0

Please sign in to comment.