We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configure_server!
listen_port
Bonito.jl/src/server-defaults.jl
Lines 125 to 132 in ebba54d
When listen_url is not defined, it is set to SERVER_CONFIGURATION.listen_url[] which is set to nothing. This trips the error in line 140 as follows:
listen_url
SERVER_CONFIGURATION.listen_url[]
nothing
julia> using Bonito julia> Bonito.configure_server!() ERROR: Trying to listen to nothing, while only "127.0.0.1", "0.0.0.0" and "localhost" are supported Stacktrace: [1] error(s::String) @ Base ./error.jl:35 [2] configure_server!(; listen_url::Nothing, listen_port::Int64, forwarded_port::Int64, proxy_url::Nothing) @ Bonito ~/.julia/packages/Bonito/5OnJB/src/server-defaults.jl:140 [3] configure_server!() @ Bonito ~/.julia/packages/Bonito/5OnJB/src/server-defaults.jl:118 [4] top-level scope @ REPL[2]:1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bonito.jl/src/server-defaults.jl
Lines 125 to 132 in ebba54d
When
listen_url
is not defined, it is set toSERVER_CONFIGURATION.listen_url[]
which is set tonothing
. This trips the error in line 140 as follows:The text was updated successfully, but these errors were encountered: