ipostelnik
ipostelnik
It has been a while, I will try to rebase this PR on current master and look into comments.
The upgrade message is printed on stderr, so you can ignore it by adding `2> /dev/null` to your cloudflared invocation. You should look into using `-o` to switch output to...
``` cloudflared tunnel list -o yaml 2> /dev/null | fgrep -- '- id:' | cut -c 7- ``` works for me to list IDs of my tunnels.
This is caused by https://github.com/gorilla/websocket/issues/679
After more discussion with gorilla/websocket devs, it looks like cloudflared misuses `conn.UnderlyingConn`. We're going to change how we proxy websocket connections.
This happens because we try to capture the environment of each anonymous mapfn. Inside `q2` we capture `g` as part of the environment. This includes the full definition of the...
@sritchie any ideas on this one?
The problem is that anonymous functions close over all symbols in their scope. Since we don't prune captured environment, the generator argument is part of the serialized function and, eventually,...
#285 also relies on this functionality. I guess we could add some sort of metadata annotation to operations that want to use these vars. Alternatively, maybe we could change them...
Fixed by #267