Details
-
Fix
-
Status: Dismissed (View Workflow)
-
Medium
-
Resolution: Duplicate
-
None
-
None
Description
Current Situation
- When an Agent Cluster is exported the resulting JSON might look like this:
{ "agentCluster" : { "subagents" : [ { "agentId" : "AgentCluster", "subagentId" : "agent1", "url" : "https://e1-bpay-alsu001.pnet.ch:7035", "isDirector" : "PRIMARY_DIRECTOR", "title" : "Primary Director Agent", "disabled" : false, "deployed" : true, "ordering" : 0, "version" : "2.7.3" }, { "agentId" : "AgentCluster", "subagentId" : "agent2", "url" : "https://e1-bpay-alsu001.pnet.ch:7037", "isDirector" : "SECONDARY_DIRECTOR", "title" : "Secondary Director Agent", "disabled" : false, "deployed" : true, "ordering" : 1, "version" : "2.7.3" } ], ... }
- The "ordering" property starts from a value 0 and is incremented for further Subagents. The same applies to Subagent Clusters in an export file.
- An export file that specifies "ordering": 0 cannot be imported as it raises the error:
2025-02-21T14:11:35.233749593+01:00 stdout F 2025-02-21T14:11:35,229 log=joc.log ERROR nssl-nio-8443-exec-9 c.s.j.c.JOCDefaultResponse - JocBadRequestException: com.sos.joc.exceptions.JocBadRequestException: Invalid JSON in AgentCluster.agent.json: $.agentCluster.subagents[0].ordering: must have a minimum value of 1 or $.subagentClusters[0].ordering: must have a minimum value of 1
Desired Behavior
- Input validation should be updated to consider that use of the 0 value for any occurrence of the "ordering" property in an export file is valid input.