omnata-plugin-runtime 0.4.0a89__tar.gz → 0.4.0a90__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/omnata_plugin.py +6 -2
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/LICENSE +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/README.md +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/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-a90"
|
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"
|
@@ -963,8 +963,6 @@ class InboundSyncRequest(SyncRequest):
|
|
963
963
|
for stream_name in stream_names:
|
964
964
|
self._apply_results[stream_name] = None
|
965
965
|
self._apply_results = {}
|
966
|
-
# update the inbound stream record counts, so we can see progress
|
967
|
-
self.apply_progress_updates()
|
968
966
|
|
969
967
|
# also take care of uploading delete requests
|
970
968
|
if hasattr(self,'_apply_results_criteria_deletes') and self._apply_results_criteria_deletes is not None:
|
@@ -984,6 +982,12 @@ class InboundSyncRequest(SyncRequest):
|
|
984
982
|
self._apply_criteria_deletes_dataframe(all_dfs)
|
985
983
|
# clear the delete requests
|
986
984
|
self._apply_results_criteria_deletes = {}
|
985
|
+
|
986
|
+
|
987
|
+
# update the inbound stream record counts, so we can see progress
|
988
|
+
# we do this last, because marking a stream as completed will cause the sync engine to process it
|
989
|
+
# so we need to make sure all the results are applied first
|
990
|
+
self.apply_progress_updates()
|
987
991
|
|
988
992
|
def apply_progress_updates(self):
|
989
993
|
"""
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.0a89 → omnata_plugin_runtime-0.4.0a90}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|