mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-13 16:59:52 +08:00
Basics of messaging.
This commit is contained in:
11
fedmsg.d/rida.py
Normal file
11
fedmsg.d/rida.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import socket
|
||||
hostname = socket.gethostname().split('.')[0]
|
||||
|
||||
config = {
|
||||
# Just enough fedmsg config to start publishing...
|
||||
"endpoints": {
|
||||
"rida.%s" % hostname: [
|
||||
"tcp://127.0.0.1:300%i" % i for i in range(10)
|
||||
],
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user