-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix crashes when date is not available, fix edp components query…
…, fix codebase in progress status handling (#66) Jira: EPMDEDP-12703 Related: #66 Change-Id: Ia379cdc910a5331e3a7f8dd96a43dcf362b6368d
- Loading branch information
1 parent
1eb1e7a
commit ed3f986
Showing
8 changed files
with
67 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const EDP_CDPIPELINE_STATUS = { | ||
CREATED: 'created', | ||
INITIALIZED: 'initialized', | ||
IN_PROGRESS: 'in-progress', | ||
IN_PROGRESS: 'in progress', | ||
FAILED: 'failed', | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const EDP_CDPIPELINE_STAGE_STATUS = { | ||
CREATED: 'created', | ||
INITIALIZED: 'initialized', | ||
IN_PROGRESS: 'in-progress', | ||
IN_PROGRESS: 'in progress', | ||
FAILED: 'failed', | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const EDP_CODEBASE_STATUS = { | ||
CREATED: 'created', | ||
INITIALIZED: 'initialized', | ||
IN_PROGRESS: 'in-progress', | ||
IN_PROGRESS: 'in progress', | ||
FAILED: 'failed', | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const EDP_CODEBASE_BRANCH_STATUS = { | ||
CREATED: 'created', | ||
INITIALIZED: 'initialized', | ||
IN_PROGRESS: 'in-progress', | ||
IN_PROGRESS: 'in progress', | ||
FAILED: 'failed', | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters