Hi team,
In our Builder class(IntegrationLeader and RunActionOnApp) we have a function called configure, which fetches the values of global configuration using below lines of code.
CustomGlobalConfiguration calmGlobalConfiguration = CustomGlobalConfiguration.get();
calmIP = calmGlobalConfiguration.getPcip()
The values fetched are used or making api calls so that other fields on the UI get populated. We hardcoded the values(i.e set calmIP = <ip adders>) and checked that api calls are working fine but when we use above code(i.e fetch values from global configuration) the calls start failing as the values are being sent null.