Icon

This is the documentation for an older version of Qube. The latest version of the documentation can be found here: Qube

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Synopsis

New in v6.4-1

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

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

Syntax 

  • All key/value pairs defined with an = sign. The space before and after the equals sign is optional.
  • All values must be quoted with double-quotes.
  • The closing brace must be on a new line. 

Example

Windows worker:

worker_path_map = { 
    "/Users/jburk" = "Z:"
    "/Users/jburk/test" = "Y:"
    "/tmp" = "C:/temp"
}

OS X worker:

worker_path_map = {
    "Z:" = "/Users/jburk"
    "Y:" = "/Users/jburk/test"
    "C:/temp" = "/tmp"
}

Defaults

None.

 

 

 

  • No labels