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
Not possible to implement as Logria requires the user to be in control of stdin
stdin gets taken over by whatever we pipe to this program, and we cannot move that pipe away from stdin until the pipe finishes
We can overwrite the pipe with sys.stdin = open(0) however this will not work until the original pipe ends, which will never happen when tailing a stream
The text was updated successfully, but these errors were encountered:
From the Python repo:
sys.stdin = open(0)
however this will not work until the original pipe ends, which will never happen when tailing a streamThe text was updated successfully, but these errors were encountered: