omnata-plugin-runtime 0.8.1a202__tar.gz → 0.8.2a203__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/PKG-INFO +2 -1
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/README.md +1 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/omnata_plugin.py +1 -1
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/LICENSE +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: omnata-plugin-runtime
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.2a203
|
4
4
|
Summary: Classes and common runtime components for building and running Omnata Plugins
|
5
5
|
Author: James Weakley
|
6
6
|
Author-email: james.weakley@omnata.com
|
@@ -51,3 +51,4 @@ It contains data classes, interfaces and application logic used to perform plugi
|
|
51
51
|
|
52
52
|
For instructions on creating plugins, visit our [docs site](https://docs.omnata.com/omnata-product-documentation/omnata-sync-for-snowflake/plugins/creating-plugins).
|
53
53
|
|
54
|
+
|
@@ -4,3 +4,4 @@ This package is a runtime dependency for [Omnata Plugins](https://docs.omnata.co
|
|
4
4
|
It contains data classes, interfaces and application logic used to perform plugin operations.
|
5
5
|
|
6
6
|
For instructions on creating plugins, visit our [docs site](https://docs.omnata.com/omnata-product-documentation/omnata-sync-for-snowflake/plugins/creating-plugins).
|
7
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.8.
|
3
|
+
version = "0.8.2-a203"
|
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"
|
@@ -2150,7 +2150,7 @@ def __managed_inbound_processing_worker(
|
|
2150
2150
|
try:
|
2151
2151
|
with tracer.start_as_current_span("managed_inbound_processing") as managed_inbound_processing_span:
|
2152
2152
|
logger.debug(f"worker {worker_index} processing stream {stream.stream_name}, invoking plugin class method {method.__name__}")
|
2153
|
-
managed_inbound_processing_span.set_attribute("stream_name", stream.stream_name)
|
2153
|
+
managed_inbound_processing_span.set_attribute("omnata.sync.stream_name", stream.stream_name)
|
2154
2154
|
result = method(plugin_class_obj, *(stream, *method_args), **method_kwargs)
|
2155
2155
|
logger.debug(f"worker {worker_index} completed processing stream {stream.stream_name}")
|
2156
2156
|
if result is not None and result is False:
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.8.1a202 → omnata_plugin_runtime-0.8.2a203}/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
|