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 countertest package exists to test telemetry instrumentation, with a countertest.Open(dir) API to initialize the counter file in a temp directory.
But on Windows, we can't clean up that directory while the counter file is open. I think we should add a countertest.Close() function to close the counter file.
This is non-trivial: the file mapping logic is complicated, and likely assumes that the file stays open.
The text was updated successfully, but these errors were encountered:
The countertest package exists to test telemetry instrumentation, with a
countertest.Open(dir)
API to initialize the counter file in a temp directory.But on Windows, we can't clean up that directory while the counter file is open. I think we should add a
countertest.Close()
function to close the counter file.This is non-trivial: the file mapping logic is complicated, and likely assumes that the file stays open.
The text was updated successfully, but these errors were encountered: