-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WX-1110[risk=low] Added endpoint to fetch failed tasks by workflow id #7165
Merged
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b0efcf5
wx-1110 saving current progress, need to translate entries to events …
JVThomas 978304d
WX-1110 end to end path building successfully, need to test if it wor…
JVThomas bec897b
WX-1110 added new metadata endpoint, partially implemented swagger do…
JVThomas c3b5f0e
WX-1110 corrections to SQL query and endpoint flow (need to test if a…
JVThomas 53bd3f8
WX-1110 added test for new MetadataSlickDatabase function
JVThomas e6ba45e
WX-1110 recombined metadta entry transformation logic
JVThomas 3f648a3
WX-1110 added content checks on emtries for db test
JVThomas ff6b590
WX-1110 created method to handle identifier parsing for postgres
JVThomas 5e71659
WX-1110 corrections to seq insertions, test corrections
JVThomas 55559ef
WX-1110 updated query to resolve for PG and non-PG dbs, updated test
JVThomas 4b62b90
WX-1110 added test for failed task event for MetadataBuilderActor
JVThomas f8fa61e
WX-1110 added endpoint test for failed jobs
JVThomas f5bcb3e
Merge branch 'develop' into WX-1110
JVThomas 6f4137b
WX-1110 minor update to swagger endpoint page
JVThomas 27d9461
WX-1110 typo corrections, comment cleanup
JVThomas c6105cc
WX-1110 doc updates, mock response and test corrections, added row co…
JVThomas 4235421
Merge branch 'develop' into WX-1110
JVThomas ccc601b
WX-1110 corrected query to correctly handle failed fetches against ta…
JVThomas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's up with these hash signs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's Slick's way of handling string interpolation. You would think "Why not use
${}
? It's because Slick is using that notation specifically to bind values in a query.So something like
tableName.colName = ${val}
would work, but `SELECT ${tableName}.${colName} would throw an error since you're declaring an identifier rather than providing a value.This also caught me off guard and is only briefly covered in the Slick docs.