Skip to content

Commit

Permalink
Make dagster/reexecution_strategy tag editable (#8286)
Browse files Browse the repository at this point in the history
### Summary & Motivation

### How I Tested These Changes
  • Loading branch information
johannkm committed Jun 9, 2022
1 parent 04e2a7a commit 028eb42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python_modules/dagster/dagster/core/storage/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
DOCKER_IMAGE_TAG = "{prefix}image".format(prefix=SYSTEM_TAG_PREFIX)

MAX_RETRIES_TAG = "{prefix}max_retries".format(prefix=SYSTEM_TAG_PREFIX)
RETRY_STRATEGY_TAG = "{prefix}retry_strategy".format(prefix=SYSTEM_TAG_PREFIX)

USER_EDITABLE_SYSTEM_TAGS = [PRIORITY_TAG, MAX_RETRIES_TAG]
USER_EDITABLE_SYSTEM_TAGS = [PRIORITY_TAG, MAX_RETRIES_TAG, RETRY_STRATEGY_TAG]


class TagType(Enum):
Expand Down

0 comments on commit 028eb42

Please sign in to comment.