Commit 12ad04c9 by gdj

调整ConditionalWaylineJobKey逻辑。

parent 8abacd15
......@@ -30,7 +30,9 @@ public class ConditionalWaylineJobKey {
return;
}
String[] keyArr = key.split(RedisConst.DELIMITER);
new ConditionalWaylineJobKey(keyArr[0], keyArr[1], keyArr[2]);
this.workspaceId = keyArr[0];
this.dockSn = keyArr[1];
this.jobId = keyArr[2];
}
public String getKey() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment