Skip to content

Java concoredocker still splits params on commas, Python uses semicolons now #355

Description

@avinxshKD

Python parse_params() splits on ;:

for item in s.split(";"):

Java fallback (concoredocker.java ~line 65) still does this,

sparams = "{'" + sparams.replaceAll(",", ",'").replaceAll("=", "':") ...

So a=1;b=2 in a params file works in Python, gets mangled in Java. The two can't read each other's param files anymore

so just needs the Java side updated to split on ; like Python does

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions