omnata-plugin-runtime 0.8.1a202__tar.gz → 0.8.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.8.1a202
3
+ Version: 0.8.2
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.1-a202"
3
+ version = "0.8.2"
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: