Péter Szilágyi

Results 278 comments of Péter Szilágyi

If I understand your setup correctly, you have 2 machines, one compute and one storage server. The compute holding the main database on an SSD and the storage server holding...

For the record, our need for the metrics arose from a missed Reset operation which resulted in an eventual OOM. None of our monitoring systems detected the issue ahead of...

No, we had ephemeral cache instances and a refactor lost the Reset when the outer temporary object got cleaned up.

I'm using `unconvert` via the gometalinter using `--enable=unconvert`. Not sure exactly how the meta linter invokes `unconvert`.

I did try running locally with the `--all` option on my repo, but it dies on some CGO packages: ``` $ unconvert --all ./cmd/puppeth/ /work/src/github.com/ethereum/go-ethereum/crypto/signature_cgo.go:27:2: could not import github.com/ethereum/go-ethereum/crypto/secp256k1 (invalid...

Do you have some public repository + build command to reproduce this and allow testing? I'd gladly add new features and/or polishes, just need a way to reliably test it.

@elimisteve No luck there :) Xgo just uses the stock Go + various gcc toolkits to cross compile.

If your code is reachable somewhere (e.g. a zip bundle or something) I can try to repro. With no code to see what you're doing, I cannot repro and thus...

Most trivial repro: `var variable = "ect"`

Further inspection, it works correctly if I explicitly specify `--source=go`, so it would seem that it fails detecting that my file is Go and doesn't switch to the new `ReplaceGo`...