|
|
|
@@ -69,7 +69,7 @@ Status CheckOptionsValid(const std::map<string, string> &options) { |
|
|
|
auto job_id_iter = options.find(OPTION_EXEC_JOB_ID); |
|
|
|
if (job_id_iter != options.end()) { |
|
|
|
if (job_id_iter->second.length() > kMaxStrLen) { |
|
|
|
GELOGE(PARAM_INVALID, "[Check][Job_id]Before execution, check job_id failed,the job_id string length: %u > max string length: %d", job_id_iter->second.length(), kMaxStrLen); |
|
|
|
GELOGE(PARAM_INVALID, "[Check][Job_id]Before execution, check job_id failed,the job_id string length > max string length: %d", kMaxStrLen); |
|
|
|
return FAILED; |
|
|
|
} |
|
|
|
} |
|
|
|
|