omnata-plugin-runtime 0.3.14a51__tar.gz → 0.3.15a53__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.14a51 → omnata_plugin_runtime-0.3.15a53}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/omnata_plugin.py +1 -1
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/LICENSE +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/README.md +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/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.15-a53"
|
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"
|
@@ -928,7 +928,7 @@ class InboundSyncRequest(SyncRequest):
|
|
928
928
|
)
|
929
929
|
)
|
930
930
|
# also take care of uploading delete requests
|
931
|
-
if self._apply_results_criteria_deletes is not None:
|
931
|
+
if hasattr(self,'_apply_results_criteria_deletes') and self._apply_results_criteria_deletes is not None:
|
932
932
|
with self._apply_results_lock:
|
933
933
|
results:List[pandas.DataFrame] = []
|
934
934
|
for stream_name, stream_results in self._apply_results_criteria_deletes.items():
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.3.14a51 → omnata_plugin_runtime-0.3.15a53}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|