vellum-workflow-server 1.7.2.post1__py3-none-any.whl → 1.7.2.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.7.2.post1
3
+ Version: 1.7.2.post2
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -12,7 +12,7 @@ workflow_server/config.py,sha256=qmmTr6ty3ZN5LDOFs3TfUxYshYe6Mmn_LanplHHeE9Q,179
12
12
  workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  workflow_server/core/cancel_workflow.py,sha256=zsP703UOPe_ulPXdbn6osiw-xTFa7IsaWzvXZJWHcKw,2216
14
14
  workflow_server/core/events.py,sha256=24MA66DVQuaLJJcZrS8IL1Zq4Ohi9CoouKZ5VgoH3Cs,1402
15
- workflow_server/core/executor.py,sha256=jXX5OLv0iacDoB_TAyJs-1xIIvsFkZHdHIn4ncWuIoQ,17893
15
+ workflow_server/core/executor.py,sha256=yuWD3swkJh-pPQvcvBG1xkKij-1DH5WhLx8dDfB2Fxg,17662
16
16
  workflow_server/core/utils.py,sha256=C59WjckMGDwAyeKe62RmmaMJPi42RZobDVJVptE0k7c,2112
17
17
  workflow_server/core/workflow_executor_context.py,sha256=rSjgkWenRGpFOwioRXNnUhGnEI7isOB-Qk7Tw-2JwnM,4521
18
18
  workflow_server/server.py,sha256=QBU12AaAfAgLqfCDBd24qIJl_mbheiq0-hfcWV7rZM4,1234
@@ -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=0Nq6du8o-iBtTrip9_wgHES53JSiJbVdSXaBnPobw3s,6930
30
30
  workflow_server/utils/utils.py,sha256=ZPoM1Suhid22dpB8oEFLux8wx-9iyzmSfWuYxSCrgWk,4774
31
- vellum_workflow_server-1.7.2.post1.dist-info/METADATA,sha256=66m30H2Oto9Z3uRwJMo-pZRimqVv0eetIQ8RPwQKLnU,2273
32
- vellum_workflow_server-1.7.2.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.7.2.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.7.2.post1.dist-info/RECORD,,
31
+ vellum_workflow_server-1.7.2.post2.dist-info/METADATA,sha256=8tFx2vPY9mQbIA_n71UeoXnfSqvljJX8VPOS2ojrfCk,2273
32
+ vellum_workflow_server-1.7.2.post2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.7.2.post2.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.7.2.post2.dist-info/RECORD,,
@@ -8,7 +8,6 @@ import os
8
8
  import random
9
9
  import string
10
10
  import sys
11
- import threading
12
11
  from threading import Event as ThreadingEvent
13
12
  import time
14
13
  from traceback import format_exc
@@ -237,12 +236,6 @@ def stream_workflow(
237
236
  finally:
238
237
  cancel_watcher_kill_switch.set()
239
238
 
240
- emitter_thread = next(
241
- (t for t in threading.enumerate() if t.name.endswith(".background_thread") and t.is_alive()), None
242
- )
243
- if emitter_thread:
244
- emitter_thread.join()
245
-
246
239
  workflow.join()
247
240
 
248
241
  return (