gridappsd-python 2025.3.2a6__tar.gz → 2025.3.2a8__tar.gz
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.
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/PKG-INFO +1 -1
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/goss.py +12 -1
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/pyproject.toml +1 -1
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/README.md +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/__init__.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/__main__.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/app_registration.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/difference_builder.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/docker_handler.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/field_interface/__init__.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/gridappsd.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/houses.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/json_extension.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/loghandler.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/register_app.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/simulation.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/timeseries.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/topics.py +0 -0
- {gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/utils.py +0 -0
|
@@ -121,7 +121,7 @@ class GOSS(object):
|
|
|
121
121
|
if not self.__user__ or not self.__pass__:
|
|
122
122
|
raise ValueError("Invalid username/password specified.")
|
|
123
123
|
|
|
124
|
-
self._heartbeat = int(os.environ.get(GRIDAPPSD_ENV_ENUM.GRIDAPPSD_HEARTBEAT.value,
|
|
124
|
+
self._heartbeat = int(os.environ.get(GRIDAPPSD_ENV_ENUM.GRIDAPPSD_HEARTBEAT.value, 10000))
|
|
125
125
|
self._conn = None
|
|
126
126
|
self._ids = set()
|
|
127
127
|
self._topic_set = set()
|
|
@@ -420,3 +420,14 @@ class CallbackRouter(object):
|
|
|
420
420
|
_log.error("Error in callback router")
|
|
421
421
|
_log.error(header)
|
|
422
422
|
_log.error(message)
|
|
423
|
+
|
|
424
|
+
def on_error(self, header, message):
|
|
425
|
+
_log.error("Error in callback router")
|
|
426
|
+
_log.error(header)
|
|
427
|
+
_log.error(message)
|
|
428
|
+
|
|
429
|
+
def on_heartbeat_timeout(self):
|
|
430
|
+
_log.error("Heartbeat timeout")
|
|
431
|
+
|
|
432
|
+
def on_disconnected(self):
|
|
433
|
+
_log.info("Disconnected")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gridappsd_python-2025.3.2a6 → gridappsd_python-2025.3.2a8}/gridappsd/field_interface/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|