Skip to content

Commit

Permalink
fix: add jit_register suffix to workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldesai1 committed Jan 18, 2024
1 parent 7875fa3 commit 1f1eeb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion latch_cli/services/local_dev_old.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _get_workflow_name(pkg_root: Path, snakemake: bool) -> str:
if metadata._snakemake_metadata is None:
click.secho(f"Unable to find latch_metadata in {pkg_root}.", fg="red")
raise click.exceptions.Exit(1)
return metadata._snakemake_metadata.name
return f"{metadata._snakemake_metadata.name}_jit_register"
else:
from flytekit.core.context_manager import FlyteEntities
from flytekit.core.workflow import PythonFunctionWorkflow
Expand Down

0 comments on commit 1f1eeb4

Please sign in to comment.