This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =INFO REPORT==== 18-Aug-2014::15:37:16 === | |
| Adding vhost 'nameko' | |
| =INFO REPORT==== 18-Aug-2014::15:37:16 === | |
| Setting permissions for 'guest' in 'nameko' to '.*', '.*', '.*' | |
| =INFO REPORT==== 18-Aug-2014::15:37:16 === | |
| accepting AMQP connection <0.9149.0> (127.0.0.1:41142 -> 127.0.0.1:5672) | |
| =INFO REPORT==== 18-Aug-2014::15:37:16 === |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =INFO REPORT==== 18-Aug-2014::16:12:24 === | |
| Adding vhost 'nameko' | |
| =INFO REPORT==== 18-Aug-2014::16:12:24 === | |
| Setting permissions for 'guest' in 'nameko' to '.*', '.*', '.*' | |
| =INFO REPORT==== 18-Aug-2014::16:12:25 === | |
| accepting AMQP connection <0.2181.1> (127.0.0.1:43102 -> 127.0.0.1:5672) | |
| =INFO REPORT==== 18-Aug-2014::16:12:25 === |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =INFO REPORT==== 18-Aug-2014::18:09:20 === | |
| Deleting vhost 'nameko' | |
| =INFO REPORT==== 18-Aug-2014::18:09:21 === | |
| Adding vhost 'nameko' | |
| =INFO REPORT==== 18-Aug-2014::18:09:21 === | |
| Setting permissions for 'guest' in 'nameko' to '.*', '.*', '.*' | |
| =INFO REPORT==== 18-Aug-2014::18:09:21 === |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| amqp://shrqdjyp:[email protected]/shrqdjyp | |
| username: shrqdjyp | |
| password: zIP80Nq3s2M2nwpbSej0YQGipMgMqZsw | |
| -- | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import eventlet | |
| eventlet.monkey_patch() | |
| from eventlet.greenpool import GreenPile | |
| from kombu.pools import producers | |
| from kombu import Exchange, Queue | |
| exchange = Exchange('exchange', type='direct') | |
| queue = Queue('queue', exchange, routing_key='queue') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def foo(): | |
| print "foo" | |
| def bar(): | |
| print "bar" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| def foo(): | |
| bar() | |
| def bar(): | |
| baz() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from nameko.extensions import DependencyProvider | |
| class Config(DependencyProvider): | |
| def get_dependency(self, worker_ctx): | |
| return self.container.config.copy() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [run] | |
| branch = True | |
| source = . |
OlderNewer