I could not figure out if there was a prefered spot to submit bugs
Here it goes anyways
Line 237 and 238 in queue-manager.rb there are two problems that I had to change in order for it to work for me
Line 237
drb.merge(@config.drb) if @config.drb
It does not save the merge. I think you intended it to do irb.merge! or irb = irb.merge
Without the bang you do not retain the merge and it was not reading the port # from the config file
and line 238
drb_uri = "druby://localhost:#{drb['port']}"
I have to change localhost to my current ip address or I can only make connections from the local machine.
If I change localhost to the computers ip address then other machines on the network can connect to it. I had already set permissions in the config file and the only thing changed is localhost on that line. Otherwise I cannot use the message queue from other computers.