Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.

    Synopsis

    New in v6.4-2

    worker_path_map =  {
        "pathA" = "pathB"
        ...
    }

    Specify the path translation map for a worker.  Any job that supports path translation (have the convert_path job flag set, or any pyCmdline, pyCmdrange, or AppFinder jobs) will have pathB substituted for pathA when the job runs on the worker.

    ...

    Note
    The mappings are applied in order, so we recommend that you provide the " / = \\" or " \ \ = /" mappings as either the first or last entries in the map.

    ...

    Examples

    Windows worker:

    worker_path_map = {  
        "/Volumes/farm" = "//Server/farm"

    ...

        "/Users/jburk" = "Z:"

    ...

        "/Users/jburk/test" = "Y:"
        "/tmp" = "C:/temp"
        "/" = "\\"
    }

    OS X / Linux worker:

    worker_path_map = {

    ...