holado 0.2.3__py3-none-any.whl → 0.2.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of holado might be problematic. Click here for more details.
- holado/__init__.py +11 -1
- {holado-0.2.3.dist-info → holado-0.2.4.dist-info}/METADATA +1 -1
- {holado-0.2.3.dist-info → holado-0.2.4.dist-info}/RECORD +11 -11
- holado_ais/ais/ais_messages.py +140 -139
- holado_logging/__init__.py +2 -1
- holado_logging/common/logging/log_config.py +127 -127
- holado_protobuf/__init__.py +1 -1
- holado_protobuf/ipc/protobuf/protobuf_messages.py +821 -818
- holado_rabbitmq/tools/rabbitmq/rabbitmq_client.py +1 -2
- {holado-0.2.3.dist-info → holado-0.2.4.dist-info}/WHEEL +0 -0
- {holado-0.2.3.dist-info → holado-0.2.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -27,7 +27,6 @@ from holado_core.common.exceptions.verify_exception import VerifyException
|
|
|
27
27
|
import abc
|
|
28
28
|
from holado_multitask.multithreading.loopfunctionthreaded import LoopFunctionThreaded
|
|
29
29
|
from holado_multitask.multitasking.multitask_manager import MultitaskManager
|
|
30
|
-
from pika.exceptions import ConnectionWrongStateError
|
|
31
30
|
from holado.common.tools.gc_manager import GcManager
|
|
32
31
|
|
|
33
32
|
|
|
@@ -35,7 +34,7 @@ logger = logging.getLogger(__name__)
|
|
|
35
34
|
|
|
36
35
|
try:
|
|
37
36
|
import pika # @UnresolvedImport @UnusedImport
|
|
38
|
-
from pika.exceptions import StreamLostError
|
|
37
|
+
from pika.exceptions import ConnectionWrongStateError, StreamLostError
|
|
39
38
|
with_pika = True
|
|
40
39
|
except Exception as exc:
|
|
41
40
|
if Tools.do_log(logger, logging.DEBUG):
|
|
File without changes
|
|
File without changes
|