Skip to content

Commit

Permalink
vpoller-worker: provide defaults options as strings
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Jun 4, 2020
1 parent b29da4d commit f24774d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/vpoller/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ def __init__(self, config_file, num_workers=0):
'db': '/var/lib/vconnector/vconnector.db',
'mgmt': 'tcp://*:10000',
'proxy': 'tcp://localhost:10123',
'helpers': None,
'tasks': None,
'cache_maxsize': 0,
'cache_enabled': False,
'cache_ttl': 3600,
'cache_housekeeping': 480,
'helpers': 'None',
'tasks': 'None',
'cache_maxsize': '0',
'cache_enabled': 'False',
'cache_ttl': '3600',
'cache_housekeeping': '480',
}

def start(self):
Expand Down

0 comments on commit f24774d

Please sign in to comment.