Basics of messaging.

This commit is contained in:
Ralph Bean
2016-06-30 12:30:01 -04:00
parent b7eb131d22
commit c691973601
5 changed files with 96 additions and 38 deletions

11
fedmsg.d/rida.py Normal file
View 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)
],
},
}