Skip to content

Commit

Permalink
fix: #1487 Fix typo of AWS target environment variable (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 authored Jul 24, 2024
1 parent ddcd0ec commit 956d1ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/admin_management/api/app/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AwsTargetEnv(str, Enum):
# Not to be confused with application environment or API instance environment.
DEV = "dev"
TEST = "test"
PROD = "Prod"
PROD = "prod"


class UserType(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion server/backend/api/app/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AwsTargetEnv(str, Enum):
# Not to be confused with application environment or API instance environment.
DEV = "dev"
TEST = "test"
PROD = "Prod"
PROD = "prod"


# Internal defined enum client status constants for FAM 'router_forest_client'.
Expand Down

0 comments on commit 956d1ec

Please sign in to comment.