gridappsd-python 2025.3.2a7__tar.gz → 2025.3.2a9__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.
Files changed (19) hide show
  1. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/PKG-INFO +1 -1
  2. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/goss.py +12 -1
  3. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/pyproject.toml +1 -1
  4. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/README.md +0 -0
  5. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/__init__.py +0 -0
  6. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/__main__.py +0 -0
  7. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/app_registration.py +0 -0
  8. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/difference_builder.py +0 -0
  9. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/docker_handler.py +0 -0
  10. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/field_interface/__init__.py +0 -0
  11. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/gridappsd.py +0 -0
  12. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/houses.py +0 -0
  13. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/json_extension.py +0 -0
  14. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/loghandler.py +0 -0
  15. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/register_app.py +0 -0
  16. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/simulation.py +0 -0
  17. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/timeseries.py +0 -0
  18. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/topics.py +0 -0
  19. {gridappsd_python-2025.3.2a7 → gridappsd_python-2025.3.2a9}/gridappsd/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: gridappsd-python
3
- Version: 2025.3.2a7
3
+ Version: 2025.3.2a9
4
4
  Summary: A GridAPPS-D Python Adapter
5
5
  License: BSD-3-Clause
6
6
  Keywords: gridappsd,grid,activemq,powergrid,simulation,library
@@ -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, 4000))
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")
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "gridappsd-python"
3
- version = "2025.3.2a7"
3
+ version = "2025.3.2a9"
4
4
  description = "A GridAPPS-D Python Adapter"
5
5
  authors = [
6
6
  "C. Allwardt <3979063+craig8@users.noreply.github.com>",