We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb6a441 commit cb6ed08Copy full SHA for cb6ed08
1 file changed
butter/mas/clients/client.py
@@ -38,10 +38,10 @@ def timeout(self, timeout):
38
timeout (integer): command execution timeout in milliseconds
39
40
Raises:
41
- ValueError: if timeout is not in the range [20, 500]
+ ValueError: if timeout is not in the range [20, 2000]
42
"""
43
- if (timeout < 20 or timeout > 500):
44
- raise ValueError("Timeout most be an integer number in the range [20, 500]")
+ if (timeout < 20 or timeout > 2000):
+ raise ValueError("Timeout most be an integer number in the range [20, 2000]")
45
46
self._timeout = timeout
47
0 commit comments