vellum-workflow-server 1.6.4__py3-none-any.whl → 1.6.4.post1__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.6.4
3
+ Version: 1.6.4.post1
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -20,7 +20,7 @@ workflow_server/start.py,sha256=dsGg9998nki_avrow3m_bRnqSTp90wlrEsdjoP0SbrQ,2356
20
20
  workflow_server/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  workflow_server/utils/exit_handler.py,sha256=_FacDVi4zc3bfTA3D2mJsISePlJ8jpLrnGVo5-xZQFs,743
22
22
  workflow_server/utils/log_proxy.py,sha256=nugi6fOgAYKX2X9DIc39TG366rsmmDUPoEtG3gzma_Y,3088
23
- workflow_server/utils/oom_killer.py,sha256=AprKFXC_wT3lQZcKDxU5O6dtJwi6meRxjo7nhQtQ8T0,2955
23
+ workflow_server/utils/oom_killer.py,sha256=dzaqSzi0jQ3MvALwwiYIO9r6VWLa5Ln9AY6l11WEexo,3050
24
24
  workflow_server/utils/sentry.py,sha256=pqx3X_4W3yOzmz8QMJYUEi39skIKWtrTN5nyFhaPkbk,1597
25
25
  workflow_server/utils/system_utils.py,sha256=3jNv113zRkKJ0928i2Vm6TqFHrDulteQu1kjseP2B0Y,3271
26
26
  workflow_server/utils/tests/__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=0Nq6du8o-iBtTrip9_wgHES53JSiJbVdSXaBnPobw3s,6930
30
30
  workflow_server/utils/utils.py,sha256=ZPoM1Suhid22dpB8oEFLux8wx-9iyzmSfWuYxSCrgWk,4774
31
- vellum_workflow_server-1.6.4.dist-info/METADATA,sha256=kHt8gHgq8Sb30IZ1kYhn_g6bDX-ZJ7VXtgkApq_ETm8,2267
32
- vellum_workflow_server-1.6.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.6.4.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.6.4.dist-info/RECORD,,
31
+ vellum_workflow_server-1.6.4.post1.dist-info/METADATA,sha256=uegsMLKXMHLc-LFjQ3mwkS0CTGjqrvaLneKKARYP3h0,2273
32
+ vellum_workflow_server-1.6.4.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.6.4.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.6.4.post1.dist-info/RECORD,,
@@ -74,8 +74,12 @@ class OomKillerThread(Thread):
74
74
  self._kill_switch.set()
75
75
  active_span_ids = get_active_span_ids()
76
76
  logger.error(
77
- f"Workflow server OOM killed, memory: {memory_mb}MB, Process Count: {get_active_process_count()}",
78
- extra={"active_span_ids": active_span_ids},
77
+ "Workflow server OOM killed",
78
+ extra={
79
+ "active_span_ids": active_span_ids,
80
+ "memory_mb": memory_mb,
81
+ "process_count": get_active_process_count(),
82
+ },
79
83
  )
80
84
  # Give time for the threads to get our kill switch
81
85
  sleep(_KILL_GRACE_PERIOD)