omnata-plugin-runtime 0.3.15a54__tar.gz → 0.3.16__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.3.15a54 → omnata_plugin_runtime-0.3.16}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/omnata_plugin.py +2 -1
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/LICENSE +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/README.md +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/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.3.
|
3
|
+
version = "0.3.16"
|
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"
|
@@ -920,7 +920,8 @@ class InboundSyncRequest(SyncRequest):
|
|
920
920
|
self._apply_results_dataframe(stream_names, all_dfs)
|
921
921
|
# update the stream state object too
|
922
922
|
self._apply_latest_states()
|
923
|
-
|
923
|
+
for stream_name in stream_names:
|
924
|
+
self._apply_results[stream_name] = None
|
924
925
|
self._apply_results = {}
|
925
926
|
# update the inbound stream record counts, so we can see progress
|
926
927
|
self._plugin_message(
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.3.15a54 → omnata_plugin_runtime-0.3.16}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|