omnata-plugin-runtime 0.3.24a71__tar.gz → 0.3.24a72__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.3.24a71
3
+ Version: 0.3.24a72
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
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.3.24-a71"
3
+ version = "0.3.24-a72"
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"
@@ -1933,7 +1933,7 @@ def __managed_inbound_processing_worker(
1933
1933
  while not cancellation_token.is_set():
1934
1934
  # Get our generator object out of the queue
1935
1935
  logger.info(
1936
- f"worker {worker_index} processing. Cancelled: {cancellation_token.is_set()}"
1936
+ f"worker {worker_index} processing. Cancelled: {cancellation_token.is_set()}. Method args: {len(method_args)}. Method kwargs: {len(method_kwargs.keys())} ({','.join(method_kwargs.keys())})"
1937
1937
  )
1938
1938
  try:
1939
1939
  stream: StoredStreamConfiguration = streams_queue.get_nowait()