Cloud Discovery Schedule MID selection - "Specific MID Cluster" is not working properlyDescriptionCloud Discovery Schedule MID selection - "Specific MID Cluster" is not working properlySteps to Reproduce Create a discovery schedule for cloud resource that utilizes a MID server cluster. During the discovery, you will observe that only a specific MID server is utilized. In the background script, call the following function repeatedly in a loop: CloudResourceDiscoveryUtil.getSelectedMidFromSchedule() You will observe that it consistently retrieves the same MID.WorkaroundOpen script include: CloudResourceDiscoveryUtil Under function: getSelectedMidFromSchedule, local gr.query() and change the code to below gr.query(); //Workaround for PRB1686698 //if (gr.next()) var random = Math.floor((Math.random() * gr.getRowCount()) + 1); while (random--) { gr.next(); midServer = gr.agent.name + ''; } Related Problem: PRB1686698