Update oocsi_source.py
Browse files- oocsi_source.py +1 -1
oocsi_source.py
CHANGED
|
@@ -11,7 +11,7 @@ import uuid
|
|
| 11 |
from math import fsum
|
| 12 |
|
| 13 |
class OOCSI:
|
| 14 |
-
def __init__(self, handle=None, host='localhost', port=
|
| 15 |
if handle is None or len(handle.strip()) == 0:
|
| 16 |
self.handle = "OOCSIClient_" + uuid.uuid4().__str__().replace('-', '')[0:15];
|
| 17 |
else:
|
|
|
|
| 11 |
from math import fsum
|
| 12 |
|
| 13 |
class OOCSI:
|
| 14 |
+
def __init__(self, handle=None, host='localhost', port=8080, callback=None, logger=None, maxReconnectionAttempts=100000):
|
| 15 |
if handle is None or len(handle.strip()) == 0:
|
| 16 |
self.handle = "OOCSIClient_" + uuid.uuid4().__str__().replace('-', '')[0:15];
|
| 17 |
else:
|