Montana Flynn
Montana Flynn
I've added a new release `0.3.0`. Looking into https://research.swtch.com/vgo which might require adding a v prefix to the releases / tags so it can be used.
Sounds good to me, want to give it a shot?
`ipfs version: Version 0.17.0 (0.17.0)` The request to: `http://localhost:8080/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1` Redirects to `http://bafybeihpjhkeuiq3k6nqa3fkgeigeri7iebtrsuyuey5y6vy36n345xmbi.ipfs.localhost:8080/1` I can access it in chrome, but not through `wget`, `curl` or my `go` programs. Is there a...
Hi @lidel, Thanks! I ended up figuring it out by changing my ipfs settings: ``` "PublicGateways": { "localhost": { "Paths": ["/ipfs"], "UseSubdomains": false } }, ``` I'm only using the...
I think this could be the cause of logs we're getting in a kubernetes cluster: ``` 2021/08/05 11:52:21 [swarm] error during gossip (->[10.2.56.252:46358] connection shutting down due to error during...
You need to use the APM url not the elasticsearch URL / port.
I never get the error when testing with (`make test`) or making the handler from the golang `net/http` server. I did find a similar issue: https://github.com/firebase/functions-samples/issues/78 but that's for javascript....
Removing the nodego logger does seem to fix the issue. The problem remains even when using the `nodego.WithLoggerFunc` middleware. When using the middleware should I not use `nodego.ErrorLogger.Println(err)`? If I...
Nevermind the problem remains even without the logs, just took over a hundred requests before it happened. https://gist.github.com/montanaflynn/bb002f8212e9cc7f75af5cc03e7a5fd8 ``` ... HTTP/1.1 200 3.66 secs: 7742 bytes ==> GET /img-without-logs HTTP/1.1...
I removed any third party packages and can reproduce with standard library: [This code](https://gist.githubusercontent.com/montanaflynn/a7655b5c2abadbd797960fb79f69df98/raw/60eb2d1f93bbb1ea7ce4908ce57d4a7458fffb1d/500.go) returns the error / 500 response every so often. [This code](https://gist.githubusercontent.com/montanaflynn/a7655b5c2abadbd797960fb79f69df98/raw/60eb2d1f93bbb1ea7ce4908ce57d4a7458fffb1d/200.go) does not return an error...