omnata-plugin-runtime 0.4.2a95__tar.gz → 0.4.2a96__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.2a95 → omnata_plugin_runtime-0.4.2a96}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/LICENSE +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/README.md +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/omnata_plugin.py +1 -1
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/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.2-
|
3
|
+
version = "0.4.2-a96"
|
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"
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.4.2a95 → omnata_plugin_runtime-0.4.2a96}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
File without changes
|
@@ -896,6 +896,7 @@ class InboundSyncRequest(SyncRequest):
|
|
896
896
|
stream_name: 0 for stream_name in self._streams_dict.keys()
|
897
897
|
}
|
898
898
|
self._completed_streams: List[str] = []
|
899
|
+
self._omnata_log_handler = omnata_log_handler
|
899
900
|
SyncRequest.__init__(
|
900
901
|
self,
|
901
902
|
run_id=run_id,
|
@@ -916,7 +917,6 @@ class InboundSyncRequest(SyncRequest):
|
|
916
917
|
f"{self._source_app_name}.{self._results_schema_name}.{self._results_table_name}_CRITERIA_DELETES"
|
917
918
|
)
|
918
919
|
self._apply_results: Dict[str, List[pandas.DataFrame]] = {}
|
919
|
-
self._omnata_log_handler = omnata_log_handler
|
920
920
|
|
921
921
|
def apply_results_queue(self):
|
922
922
|
"""
|
File without changes
|
File without changes
|