Skip to content

Commit

Permalink
fix(job-runner): move job manifest path
Browse files Browse the repository at this point in the history
  • Loading branch information
onewland committed Nov 5, 2024
1 parent bd763b3 commit efa3632
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion snuba/manual_jobs/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, job_id: str, status: JobStatus):


def _read_manifest_from_path(filename: str) -> Mapping[str, JobSpec]:
local_root = os.path.dirname(__file__)
local_root = os.path.join(os.path.dirname(__file__), "..", "env")

with open(os.path.join(local_root, filename)) as stream:
contents = simplejson.loads(stream.read())
Expand Down

0 comments on commit efa3632

Please sign in to comment.