-
Notifications
You must be signed in to change notification settings - Fork 225
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
Export values in py tasks with sub param #974
Comments
Hello, @jaymed You can't use |
Thanks, @chezou. It's exactly like #678. I'll have to come up with a different way to pass nested parameters to my python function. I'm also finding that secrets can't be evaluated as
Without the ability to pass in dates from |
If nested, no information provided, failed to substitute the variable. This is related to treasure-data#974, treasure-data#678.
I'm trying to call a python task with a parameter that contain a list of dictionary values by using
_export
variables. The variables used to define the values in the list of dictionaries are not being interpolated.Please consider the following example. In this case I would like
arg2
to be an array of dictionary values. In this case thearg1
param evaluates correctly but the value ofsubarg2
contains the literal definition ofrelevant_date
instead of the interpolated value.The output looks like this:
The sample python task looks like this:
Please help me understand how I can properly interpolate the value of
subarg2
.The text was updated successfully, but these errors were encountered: