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
Describe the bug
When we have too many requests and errors happening, the file handle is closed prematurely, or we have concurrent access to the file without proper synchronization. This creates the following error
2024-05-29T06:21:14.451427166Z Failed to write to log, write 2024-05-29.log: file already closed
Expected behavior
Logging should be done without issue in the file.
Additional context
We will fix the error by ensuring the file is written and accessible only by one goroutine at a time.
The text was updated successfully, but these errors were encountered:
Describe the bug
When we have too many requests and errors happening, the file handle is closed prematurely, or we have concurrent access to the file without proper synchronization. This creates the following error
Expected behavior
Logging should be done without issue in the file.
Additional context
We will fix the error by ensuring the file is written and accessible only by one goroutine at a time.
The text was updated successfully, but these errors were encountered: