import com.mathworks.toolbox.distcomp.control.PortConfig; /* Copyright 2016-2017 The MathWorks, Inc. */ /** * The config file that can provide CommandConfigParser with all the neccessary * information to create a QueueStatusCommand. */ com.sun.jini.start { // First, the items that CommandConfigParser requires from all configuration // files. // 1) What process to create: remoteCommandType = "${com.mathworks.toolbox.distcomp.remote_command_type}"; // 2) Where to run the command: remoteHostname = "${com.mathworks.toolbox.distcomp.remote_hostname}"; remoteCommandPort = PortConfig.getRemoteCommandPort("${com.mathworks.toolbox.distcomp.base_port}"); // Other settings needed for the queue status command. // Most commands are single commands, however where a user wants to start // multiple commands they can set this to a positive number numCommands = 1; // Need to specify verbose as false to prevent command print outs in non-json format verbosity = "false"; // Need to specify outputFormat as json to enable json error printing outputFormat = "json"; matlabroot = "${com.mathworks.toolbox.distcomp.matlabroot}"; scriptLogLevel = 6; scriptLogFile = "${com.mathworks.toolbox.distcomp.script_log_file}"; }