Skip to content

Commit f951c93

Browse files
authored
new release with bigger timer (#74)
1 parent 475673f commit f951c93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="python-velbus",
5-
version="2.1.1",
5+
version="2.1.2",
66
url="https://github.com/thomasdelaet/python-velbus",
77
license="MIT",
88
author="Thomas Delaet",

velbus/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def timeout_expired():
171171
callback()
172172

173173
# 180 second timeout for loading modules
174-
self.load_timeout = threading.Timer(180, timeout_expired).start()
174+
self.load_timeout = threading.Timer(360, timeout_expired).start()
175175
for module in self._modules:
176176
self._modules[module].load(module_loaded)
177177

0 commit comments

Comments
 (0)