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
When using the ConsoleRedirectHandler for OAuth flows, the printed authentication URL sometimes doesn't appear immediately in VS Code terminal outputs (particularly when called through extensions like dbt Power User). This occurs because:
The current implementation doesn't force flush the output buffer (auth.py#L286)
Some IDE/plugin terminal implementations buffer stdout differently than standalone terminals
Request to modify the print statement to:
print(f"Open the following URL in browser for the external authentication: {url}", flush=True)
Uh oh!
There was an error while loading. Please reload this page.
Describe the feature
When using the
ConsoleRedirectHandler
for OAuth flows, the printed authentication URL sometimes doesn't appear immediately in VS Code terminal outputs (particularly when called through extensions like dbt Power User). This occurs because:Request to modify the print statement to:
Describe alternatives you've considered
Waiting for fixes in downstream tools (vscode-dbt-power-user#1629)
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: