Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
fixed get logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Jul 26, 2023
1 parent 897041a commit b29cca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VirtualMachineService/VirtualMachineHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ def get_playbook_logs(self, openstack_id):
if self.redis.exists(openstack_id) == 1 and openstack_id in active_playbooks:
key_name = self.redis.hget(openstack_id, "name").decode("utf-8")
playbook = active_playbooks.pop(openstack_id)
status, stdout, stderr = playbook.get_self.LOGs()
status, stdout, stderr = playbook.get_logs()
self.LOG.info(f" Playbook self.LOGs{openstack_id} stattus: {status}")

playbook.cleanup(openstack_id)
Expand Down

0 comments on commit b29cca8

Please sign in to comment.