Clone errors "There seems to be an issue calling API for scheduling the clone. The message is ReferenceError: "primaryIP" is not defined.."Issue The issue was one of the methods of the clone scheduler script not being able to access a global variable.ReleaseAny releaseCause1. Upon raising a clone request, If you are noticing the below error message over the clone request logs. Error: "There seems to be an issue calling API for scheduling the clone. The message is ReferenceError: "primaryIP" is not defined.." 2. Please apply the provided solution to handle those error logs. Note: Due to these error messages, You will not be having any impact on the clone request.ResolutionFix: 1. In the source instance, go to "InstanceCloneScheduler" Script include.2.Go to "_updateCloneRespParams" method.3. Add the below line at the beginning of the method:var primaryIP = GlideUtil.isDeveloperInstance() ? "localhost" : GlideHostUtil.getPublicIPAddress();