vellum-workflow-server 1.3.4.post1__py3-none-any.whl → 1.3.4.post2__py3-none-any.whl

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.

Potentially problematic release.


This version of vellum-workflow-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-workflow-server
3
- Version: 1.3.4.post1
3
+ Version: 1.3.4.post2
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -6,7 +6,7 @@ workflow_server/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
6
6
  workflow_server/api/tests/test_input_display_mapping.py,sha256=drBZqMudFyB5wgiUOcMgRXz7E7ge-Qgxbstw4E4f0zE,2211
7
7
  workflow_server/api/tests/test_workflow_view.py,sha256=gwb53E44LBm06XHY1UwfHqKG-UfwwICh_IYPtowN_kE,19085
8
8
  workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=Qo8u6mPyRCmE2jamY1yIh8l44hgo4-Nwlq03z61ND5g,27031
9
- workflow_server/api/workflow_view.py,sha256=osYa14kdP3LI3HZzh2Nw16-GhI0bHXwCFgasUkfRjeI,21104
9
+ workflow_server/api/workflow_view.py,sha256=gSKqlMR2r2urSBYm_jFlcpXHOk5jQsDMSDwpSahp5A8,21144
10
10
  workflow_server/code_exec_runner.py,sha256=lBnMIorPZL8zZBye6TjeCIs06WTJM7P2HR07B1fjJJI,2533
11
11
  workflow_server/config.py,sha256=DyTty8NrAwvtx-esM3KthnpsNh-nKdWNlovWQOgiGpg,1417
12
12
  workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -28,7 +28,7 @@ workflow_server/utils/tests/test_sentry_integration.py,sha256=LGmWiaLhFrx-jslrRj
28
28
  workflow_server/utils/tests/test_system_utils.py,sha256=_4GwXvVvU5BrATxUEWwQIPg0bzQXMWBtiBmjP8MTxJM,4314
29
29
  workflow_server/utils/tests/test_utils.py,sha256=qwK5Rmy3RQyjtlUrYAuGuDlBeRzZKsf1yS-y2IpUizQ,6452
30
30
  workflow_server/utils/utils.py,sha256=Wqqn-1l2ugkGgy5paWWdt0AVxAyPMQCYcnRSSOMjXlA,4355
31
- vellum_workflow_server-1.3.4.post1.dist-info/METADATA,sha256=0tQONH_TBtJPMX3ANzhMRshDMO_qXkV2RtsHMxwsR8E,2273
32
- vellum_workflow_server-1.3.4.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.3.4.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.3.4.post1.dist-info/RECORD,,
31
+ vellum_workflow_server-1.3.4.post2.dist-info/METADATA,sha256=t3_ELDwFzZUWqnYxfvYTp8uypnAsPAPeOnEpFoeBRvo,2273
32
+ vellum_workflow_server-1.3.4.post2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.3.4.post2.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.3.4.post2.dist-info/RECORD,,
@@ -81,7 +81,7 @@ def stream_workflow_route() -> Response:
81
81
  )
82
82
 
83
83
  logger.info(
84
- f"Starting workflow stream, execution ID: {context.execution_id}, "
84
+ f"Starting Workflow Server Request, trace ID: {context.trace_id}, "
85
85
  f"process count: {get_active_process_count()}, process wrapper: {ENABLE_PROCESS_WRAPPER}"
86
86
  )
87
87
 
@@ -194,6 +194,8 @@ def stream_workflow_route() -> Response:
194
194
  headers=headers,
195
195
  )
196
196
 
197
+ logger.info(f"Starting Workflow Stream, execution ID: {span_id}, ")
198
+
197
199
  def process_events(queue: Queue) -> Iterator[Union[str, dict]]:
198
200
  event: Union[str, dict]
199
201
  loops = 0
@@ -309,8 +311,7 @@ def stream_workflow_route() -> Response:
309
311
  yield "\n"
310
312
 
311
313
  logger.info(
312
- f"Workflow stream completed, execution ID: {context.execution_id}, "
313
- f"process count: {get_active_process_count()}"
314
+ f"Workflow stream completed, execution ID: {span_id}, process count: {get_active_process_count()}"
314
315
  )
315
316
  except GeneratorExit:
316
317
  # These can happen either from Vembda disconnects (possibily from predict disconnects) or