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.
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/omnata_plugin.py +0 -2
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/LICENSE +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/README.md +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/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.4.0-
|
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 = {}
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.0a86 → omnata_plugin_runtime-0.4.0a87}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|