Open ppirooznia opened 1 month ago
Describe the bug If one deploys an artifact like this:
client.artifacts.deploy(artifact_dir, artifact_path, {"prop1": ["value"], "prop2": ["value1", "value2", "etc"]})
The result for prop2 is incorrectly one single string:
prop2
{ "properties" : { "prop1" : [ "value" ], "prop2" : [ "value1,value2,etc" ] }, "uri" : "xxx" }
Expected behavior
{ "properties" : { "prop1" : [ "value" ], "prop2" : [ "etc", "value1", "value2" ] }, "uri" : "xxx" }
**This works correctly with client.artifacts.set_properties***
client.artifacts.set_properties
Environment:
Describe the bug If one deploys an artifact like this:
The result for
prop2
is incorrectly one single string:Expected behavior
**This works correctly with
client.artifacts.set_properties
***Environment: