Merge "Cast the playbook uuid as a string"

This commit is contained in:
Jenkins 2017-04-28 23:47:52 +00:00 committed by Gerrit Code Review
commit 0e58c2fd54

View File

@ -155,7 +155,7 @@ class CallbackModule(CallbackBase):
def v2_playbook_on_play_start(self, play):
self.playbook = play.name
self.uuid = play._uuid
self.uuid = str(play._uuid)
topic = 'playbooks/' + self.uuid + '/action/start'
msg = json.dumps({
'status': "OK",