We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272a116 commit 49087b1Copy full SHA for 49087b1
scripts/rabbitmq/api.py
@@ -33,6 +33,7 @@ def call_api(self, path):
33
password_mgr.add_password(None, url, self.user_name, self.password)
34
handler = urllib2.HTTPBasicAuthHandler(password_mgr)
35
logging.debug('Issue a rabbit API call to get data on ' + path + " against " + self.host_name)
36
+ logging.debug('Full URL:' + url)
37
return json.loads(urllib2.build_opener(handler).open(url).read())
38
39
def list_queues(self, filters=None):
0 commit comments