-
Notifications
You must be signed in to change notification settings - Fork 361
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
Override an optional with null #3819
Labels
Comments
Thanks for reporting. I think Cromwell is having trouble because it can't distinguish between
and
because it's just |
With inputs
and WDL
the result is
...so it would seem that Cromwell understands not to overwrite null with a default value sometimes, just not on calls. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is related (at least) to #2446.
Examine the workflow
wf
below.When running
wf
with Cromwell v32 the result ishello.result = "Hello, world"
. However, since we are calling the task with an empty value, it should overridewho
, and the the result should be (I think)Hello,"
.The text was updated successfully, but these errors were encountered: