Skip to content
Snippets Groups Projects
Commit 75115bea authored by Ramin Yaghoubzadeh's avatar Ramin Yaghoubzadeh
Browse files

Fixed initialization bug in ipaaca-python

Defaults from /etc/rsb.conf and ~/.config/rsb.conf were falsely erased, fixed.
parent a2c08257
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,10 @@
.*.sw[a-z]
*.un~
Session.vim
**/manifest.mf
**/**/manifest.mf
*/manifest.mf
*/*/manifest.mf
*/*/*/manifest.mf
*/*/*/*/manifest.mf
**/*.*~
deps
dist
......
Manifest-Version: 1.0
Main-Class: main
Name: IpaacaJava
Specification-Title: IpaacaJava
Specification-Version: 0.1
Specification-Vendor: ipaaca
Implementation-Title: IpaacaJava
Implementation-Version: August 08 2012 11:03 AM
Implementation-Vendor: ipaaca
\ No newline at end of file
......@@ -1165,9 +1165,9 @@ def initialize_ipaaca_rsb():#{{{
rsb.converter.registerGlobalConverter(
rsb.converter.ProtocolBufferConverter(
messageClass=ipaaca_pb2.IUCommission))
#rsb.__defaultParticipantConfig = rsb.ParticipantConfig.fromDefaultSources()
rsb.__defaultParticipantConfig = rsb.ParticipantConfig.fromDefaultSources()
#t = rsb.ParticipantConfig.Transport('spread', {'enabled':'true'})
rsb.__defaultParticipantConfig = rsb.ParticipantConfig.fromFile('rsb.cfg')
#rsb.__defaultParticipantConfig = rsb.ParticipantConfig.fromFile('rsb.cfg')
#}}}
......
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