-
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-1156] internal_path_prefix for TES 4.4 #7190
Changes from 12 commits
cc96144
dd5bcc9
c8b7a66
b7e8ba3
6579ed9
b942c8d
ee43c86
c7d8f73
19da5cd
9fdca8e
a90f293
0eae067
536761b
8395db4
ac6d05a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ object TesWorkflowOptionKeys { | |
// Communicates to the TES server which identity the tasks should execute as | ||
val WorkflowExecutionIdentity = "workflow_execution_identity" | ||
val DataAccessIdentity = "data_access_identity" | ||
val InternalPathPrefix = "internal_path_prefix" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that we don't set this in workflow options, I don't think this key should be defined in this file. Maybe just move to TesTask? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Whoops....I did not connect |
||
} |
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.
Does
resolve
throw an exception if it's not running on Azure TES? Or is it creating-if-not-exists?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.
Good question. It requires
callExecutionRoot
to at least exist, but it will create.../tes_task
if that doesn't yet exist.callExecutionRoot
needs to exist in order to not throw, but that should, at the minimum, be an empty path at this point.