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
What happened:
program crash due to URL.params concurrent map read and map write problem
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
A paramsLock (common/url.go baseUrl struct) is introduced in recent commit to fix concurrent map read and write problem of params. However, this problem has not been completely solved. In function "MergeUrl", params are set without this lock guard.
The text was updated successfully, but these errors were encountered:
What happened:
program crash due to URL.params concurrent map read and map write problem
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
A paramsLock (common/url.go baseUrl struct) is introduced in recent commit to fix concurrent map read and write problem of params. However, this problem has not been completely solved. In function "MergeUrl", params are set without this lock guard.
The text was updated successfully, but these errors were encountered: