Skip to content

Commit

Permalink
Add max_retries to user editable tags (#8285)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannkm committed Jun 9, 2022
1 parent a03ccb8 commit b9de066
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python_modules/dagster/dagster/core/storage/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@

DOCKER_IMAGE_TAG = "{prefix}image".format(prefix=SYSTEM_TAG_PREFIX)

USER_EDITABLE_SYSTEM_TAGS = [PRIORITY_TAG]
MAX_RETRIES_TAG = "{prefix}max_retries".format(prefix=SYSTEM_TAG_PREFIX)

USER_EDITABLE_SYSTEM_TAGS = [PRIORITY_TAG, MAX_RETRIES_TAG]


class TagType(Enum):
Expand Down

0 comments on commit b9de066

Please sign in to comment.