From: Zack Cerza Date: Mon, 4 Dec 2017 18:59:26 +0000 (-0700) Subject: fog: Fix TypeError when canceling tasks X-Git-Tag: 1.1.0~374^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5411674d8f6b93269c8df5edf9e5705388a8c047;p=teuthology.git fog: Fix TypeError when canceling tasks Signed-off-by: Zack Cerza --- diff --git a/teuthology/provision/fog.py b/teuthology/provision/fog.py index 5e8d14141..aa267ea7f 100644 --- a/teuthology/provision/fog.py +++ b/teuthology/provision/fog.py @@ -244,7 +244,7 @@ class FOG(object): resp = self.do_request( '/task/cancel', method='DELETE', - data='{"id": %i}' % task_id, + data='{"id": %s}' % task_id, ) resp.raise_for_status()