mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-23 06:19:38 +08:00
Fix auth token not being printed on startup (#2655)
This commit is contained in:
parent
8556a17a5d
commit
0c9add202b
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ defmodule LivebookWeb.Endpoint do
|
||||||
base = update_in(base.path, &(&1 || "/"))
|
base = update_in(base.path, &(&1 || "/"))
|
||||||
|
|
||||||
case Livebook.Config.authentication() do
|
case Livebook.Config.authentication() do
|
||||||
%{mode: token, secret: token} ->
|
%{mode: :token, secret: token} ->
|
||||||
%{base | query: "token=" <> token}
|
%{base | query: "token=" <> token}
|
||||||
|
|
||||||
_ ->
|
_ ->
|
||||||
|
|
Loading…
Reference in a new issue