upgraded to wrangler 3.1.2 to use local https option, but get the following error: ```workerd/util/

upgraded to wrangler 3.1.2 to use local https option, but get the following error:
workerd/util/symbolizer.c++:95: warning: Not symbolizing stack traces because $LLVM_SYMBOLIZER is not set. To symbolize stack traces, set $LLVM_SYMBOLIZER to the location of the llvm-symbolizer binary. When running tests under bazel, use `--test_env=LLVM_SYMBOLIZER=<path>`.
*** Fatal uncaught kj::Exception: kj/async-io-unix.c++:945: failed: ::bind(sockfd, &addr.generic, addrlen): Address already in use; toString() = 127.0.0.1:9999
stack: 1021761bf 102175f57 1021737ef 100911083 100911244 10091194c 1008dc91f 1008e032b 1008e015f 1008e0147 1021ac0db 1021ac337 1021aaa8f 1021aa85f 1008d41ab 186ce7f27

using node 16.20.0 (tried switching to 18 but the error still occurs).
wrangler.toml setting:
[dev]
ip = "127.0.0.1"
port = 9999
local_protocol = "https"


EDIT: strangely, it works when passing the flags inline:
wrangler dev src/main.ts --live-reload --local-protocol https --port 9999

anyone knows why?
Was this page helpful?