omnata-plugin-runtime 0.10.22a277__tar.gz → 0.10.23__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.
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/omnata_plugin.py +1 -1
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/LICENSE +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/README.md +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/json_schema.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.10.
|
3
|
+
version = "0.10.23"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -1546,7 +1546,7 @@ class InboundSyncRequest(SyncRequest):
|
|
1546
1546
|
Updates the SYNC table to have the latest stream states.
|
1547
1547
|
TODO: This should be done in concert with the results, revisit
|
1548
1548
|
"""
|
1549
|
-
if self._last_states_update is None or self._latest_states != self._last_states_update:
|
1549
|
+
if self._last_states_update is None or json.dumps(self._latest_states) != json.dumps(self._last_states_update):
|
1550
1550
|
self._plugin_message(PluginMessageStreamState(stream_state=self._latest_states))
|
1551
1551
|
self._last_states_update = self._latest_states
|
1552
1552
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.10.22a277 → omnata_plugin_runtime-0.10.23}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|