[ML] Fix line width in OpenJobAction
Original commit: elastic/x-pack-elasticsearch@0798745449
This commit is contained in:
parent
f0cb7b816d
commit
646a3acd56
|
@ -598,8 +598,8 @@ public class OpenJobAction extends Action<OpenJobAction.Request, OpenJobAction.R
|
|||
}
|
||||
|
||||
if (nodeSupportsJobVersion(node.getVersion(), job.getJobVersion()) == false) {
|
||||
String reason = "Not opening job [" + jobId + "] on node [" + node + "], because this node does not support jobs of version ["
|
||||
+ job.getJobVersion() + "]";
|
||||
String reason = "Not opening job [" + jobId + "] on node [" + node
|
||||
+ "], because this node does not support jobs of version [" + job.getJobVersion() + "]";
|
||||
logger.trace(reason);
|
||||
reasons.add(reason);
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue