diff options
Diffstat (limited to 'miss_htbt_service/htbtworker.py')
-rw-r--r-- | miss_htbt_service/htbtworker.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miss_htbt_service/htbtworker.py b/miss_htbt_service/htbtworker.py index b81deae..11fa611 100644 --- a/miss_htbt_service/htbtworker.py +++ b/miss_htbt_service/htbtworker.py @@ -251,10 +251,10 @@ def main(args): global mr_url, pol_url, missing_htbt, intvl, intopic, outopic mr_url = get_collector_uri() pol_url = get_policy_uri() - missing_htbt = int(args[2]) - intvl = int(args[3]) - intopic = args[4] - outopic = args[5] + missing_htbt = int(args[1]) + intvl = int(args[2]) + intopic = args[3] + outopic = args[4] print ("Message router url %s " % mr_url) print ("Policy router url %s " % pol_url) print ("Interval %s " % intvl) |