On Wed, Jan 19, 2011 at 11:04 AM, domenico d'agostino <[email protected]> wrote: > set('harbor.bind_addr','0.0.0.0') > set('harbor.port',8005) > set('harbor.username','source') > set('harbor.password','password') > set('harbor.timeout',30.) > live = input.harbor('live') > > set('harbor.bind_addr','0.0.0.0') > set('harbor.port',8006) > set('harbor.username','source') > set('harbor.password','password') > set('harbor.timeout',30.) > live2 = input.harbor('live2')
This code does not behave as you expect: the global settings cannot be set to two different things. Here only the second group of settings is used when harbor starts. You should look for settings that are local to the specific input.harbor(...) instance. In the SVN version there has been some work to move more params to the particular instances. This reduces/eliminates the confusion. I don't remember exactly what has been changed but I can tell you that input.harbor has a port argument here. To come back to the intial problem, could it be that the first one is never captured because you cannot connect to it, because it's actually on port 8006 while you're trying on 8005? Hope this helps, -- David ------------------------------------------------------------------------------ Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
