vellum-workflow-server 1.7.4.post1__py3-none-any.whl → 1.7.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.7.4.post1
3
+ Version: 1.7.4.post2
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -15,7 +15,7 @@ workflow_server/core/events.py,sha256=24MA66DVQuaLJJcZrS8IL1Zq4Ohi9CoouKZ5VgoH3C
15
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
- workflow_server/server.py,sha256=QBU12AaAfAgLqfCDBd24qIJl_mbheiq0-hfcWV7rZM4,1234
18
+ workflow_server/server.py,sha256=lhHPmK1PhRZd6eCkj1C0acK3YwaApZgoPHghMChw0fc,1461
19
19
  workflow_server/start.py,sha256=WHZEsLen8mtGX-wF3xUbB91_NpC_GBRtOEi87OR1rv4,2360
20
20
  workflow_server/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  workflow_server/utils/exit_handler.py,sha256=_FacDVi4zc3bfTA3D2mJsISePlJ8jpLrnGVo5-xZQFs,743
@@ -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.4.post1.dist-info/METADATA,sha256=1UPUWNpgiQZ3XZBy2HLTemlVMF7DNqYZTKfkWaHLp3E,2273
32
- vellum_workflow_server-1.7.4.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.7.4.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.7.4.post1.dist-info/RECORD,,
31
+ vellum_workflow_server-1.7.4.post2.dist-info/METADATA,sha256=ExLFKBDGeHWAx7-vmmk21IIWZ6z3FogJdNgwXc12yKo,2273
32
+ vellum_workflow_server-1.7.4.post2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.7.4.post2.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.7.4.post2.dist-info/RECORD,,
workflow_server/server.py CHANGED
@@ -8,6 +8,7 @@ from workflow_server.api.healthz_view import bp as healthz_bp
8
8
  from workflow_server.api.workflow_view import bp as workflow_bp
9
9
  from workflow_server.config import is_development
10
10
  from workflow_server.utils.sentry import init_sentry
11
+ from workflow_server.utils.utils import get_version
11
12
 
12
13
  # Disabled until we actually use the logs to provide us better debugging
13
14
  # enable_log_proxy()
@@ -28,6 +29,12 @@ def create_app() -> Flask:
28
29
  FLASK_ENV = os.getenv("FLASK_ENV", "local")
29
30
 
30
31
  logger.info(f"Creating App using config: config.{FLASK_ENV}")
32
+
33
+ version_info = get_version()
34
+ logger.info(
35
+ f"Running with SDK version: {version_info['sdk_version']}, Server version: {version_info['server_version']}"
36
+ )
37
+
31
38
  app = Flask(__name__)
32
39
  app.wsgi_app = AuthMiddleware(app.wsgi_app) # type: ignore
33
40