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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.10.22a277
3
+ Version: 0.10.23
4
4
  Summary: Classes and common runtime components for building and running Omnata Plugins
5
5
  Author: James Weakley
6
6
  Author-email: james.weakley@omnata.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.10.22-a277"
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