Skip to content
Snippets Groups Projects
Commit be1b38ac authored by Auke Klazema's avatar Auke Klazema
Browse files

SW-609: Remove mix tab and space indentation in SAS/QPIDInfrastructure/lib/QPIDDB.py

parent e95ac6ef
No related branches found
No related tags found
No related merge requests found
...@@ -67,9 +67,9 @@ class qpidinfra: ...@@ -67,9 +67,9 @@ class qpidinfra:
the example will return a full list of the federated queues. the example will return a full list of the federated queues.
""" """
ret=self.db.doquery("select h1.hostname as fromhost ,h2.hostname as tohost , queuename, exchangename from queueroutes JOIN hosts as h1 on (fromhost=h1.hostid) JOIN hosts as h2 on (tohost=h2.hostid) JOIN queues on (queueid=qid) JOIN exchanges on (exchangeid=eid);") ret=self.db.doquery("select h1.hostname as fromhost ,h2.hostname as tohost , queuename, exchangename from queueroutes JOIN hosts as h1 on (fromhost=h1.hostid) JOIN hosts as h2 on (tohost=h2.hostid) JOIN queues on (queueid=qid) JOIN exchanges on (exchangeid=eid);")
for item in ret: for item in ret:
callback(item) callback(item)
def perqpidbinding(self,callback): def perqpidbinding(self,callback):
""" Iterate over all exchange->queue bindings defined in the database. """ Iterate over all exchange->queue bindings defined in the database.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment