You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current code from WMSLayer is shared from different concurrent callers:
/**
* Get the WMS backend URL that should be used next according to the round robin.
*
* @return the next URL
*/
protected String nextWmsURL() {
curWmsURL = (curWmsURL + 1) % wmsUrl.length;
return wmsUrl[curWmsURL];
}
I guess we can do something better. I would for an instance randomize the number or make it thread safe if possible without touchin scalability.
No description provided.
The text was updated successfully, but these errors were encountered: