Skip to content

Commit

Permalink
Merge branch 'useComposeNotSwarm' of https://github.com/internetofwat…
Browse files Browse the repository at this point in the history
…er/scheduler into useComposeNotSwarm
  • Loading branch information
C-Loftus committed Jan 30, 2025
2 parents 6289ae0 + 98e7e90 commit 24353be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion userCode/lib/env.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from dagster import OpExecutionContext, get_dagster_logger
from dagster import get_dagster_logger

"""
Runtime config and env vars for dagster; prioritizes strict env vars
Expand Down
6 changes: 3 additions & 3 deletions userCode/test/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def test_lakefs_health():
f"{LAKEFS_ENDPOINT_URL}/api/v1/healthcheck",
)

assert response.status_code == 204, (
f"{LAKEFS_ENDPOINT_URL} is not healthy: {response.text}"
)
assert (
response.status_code == 204
), f"{LAKEFS_ENDPOINT_URL} is not healthy: {response.text}"


def test_rclone_config_location():
Expand Down

0 comments on commit 24353be

Please sign in to comment.