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
is ignored and never awaited. Debugging shows "writer already locked" messages. I believe this is because internally pipeTo does getWriter() and releases the lock on close(), but you need to await for it.
The fix might look like so:
Add #pipePromise: Promise<void>; member to the ProgressBar class.
The following code:
fails with:
I think this is because returned pipeTo promise here:
std/cli/unstable_progress_bar.ts
Lines 187 to 189 in 14b96c6
The fix might look like so:
#pipePromise: Promise<void>;
member to theProgressBar
class.end()
:The text was updated successfully, but these errors were encountered: