omnata-plugin-runtime 0.4.0a86__tar.gz → 0.4.0a87__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.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.4.0a86
3
+ Version: 0.4.0a87
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.4.0-a86"
3
+ version = "0.4.0-a87"
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"
@@ -934,7 +934,6 @@ class InboundSyncRequest(SyncRequest):
934
934
  ] = self._stream_record_counts[stream_name] + total_length
935
935
  results.extend(non_empty_dfs) # remove any None/empty dataframes
936
936
  stream_names.append(stream_name)
937
- self._session.sql("begin").collect()
938
937
  if len(results) > 0:
939
938
  logger.info(
940
939
  f"Applying {len(results)} batches of queued results"
@@ -945,7 +944,6 @@ class InboundSyncRequest(SyncRequest):
945
944
  self._apply_results_dataframe(stream_names, all_dfs)
946
945
  # update the stream state object too
947
946
  self._apply_latest_states()
948
- self._session.sql("commit").collect()
949
947
  for stream_name in stream_names:
950
948
  self._apply_results[stream_name] = None
951
949
  self._apply_results = {}