Skip to content

Commit

Permalink
Better sysname prepend to queue name, fixes OOIION-699
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Foster committed Feb 12, 2013
1 parent 6e94a42 commit fec1e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyon/net/channel.py
Expand Up @@ -672,7 +672,7 @@ def close_impl(self):
def _declare_queue(self, queue): def _declare_queue(self, queue):


# prepend xp name in the queue for anti-clobbering # prepend xp name in the queue for anti-clobbering
if queue and not self._recv_name.exchange in queue: if queue and not queue.startswith(self._recv_name.exchange + "."):
queue = ".".join([self._recv_name.exchange, queue]) queue = ".".join([self._recv_name.exchange, queue])
#log.debug('Auto-prepending exchange to queue name for anti-clobbering: %s', queue) #log.debug('Auto-prepending exchange to queue name for anti-clobbering: %s', queue)


Expand Down

0 comments on commit fec1e38

Please sign in to comment.