Hello! I believe I found a bug in the latest versi...
# ask-metaflow
b
Hello! I believe I found a bug in the latest version of metaflow. Last night we updated to metaflow version 2.9.2, but now whenever I push a job to argo-workflows all parameters of
type=str
are saved as with additional double quotes in argo workflows. For example:
Copy code
domain = Parameter("string_parameter", default="my_string_parameter")
When the flow is executed on argo-workflows the class variable will be shown as
Copy code
self.string_parameter = '"my_string_parameter"`
I can confirm that this does not happen with metaflow version 2.8.3.
1