Seth

Results 10 issues of Seth

seems like the `window.kill_pane()` function is missing? What is the recommended way to close a pane?

I'm seeing the following panic, ``` error: recover: runtime error: slice bounds out of range [:-9061804296214805629] Stack:goroutine 48 [running]: github.com/soniah/gosnmp.(*GoSNMP).send.func1(0xc00030f9b0) /Users/username/go/pkg/mod/github.com/soniah/[email protected]/marshal.go:320 +0xa1 panic(0xa207c0, 0xc0004b1b00) /usr/local/Cellar/go/1.14.2_1/libexec/src/runtime/panic.go:969 +0x166 github.com/soniah/gosnmp.(*GoSNMP).decryptPacket(0xc0003527e0, 0xc0001c4120, 0x88, 0x8a,...

Running this playbook to install k3s doesn't seem to install anything but k3s binary. This makes it unclear how to perform a clean restart as the documentation mentions the k3s-killall...

Looking at Oauth2 [rfc 6749 section 4.1.4](https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.4) The example token is ``` { "access_token":"2YotnFZFEjr1zCsicMWpAA", "token_type":"example", "expires_in":3600, "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA", "example_parameter":"example_value" } ``` Marshaling an `oauth2.Token` to json does not include the `expires_in`...

After submitting an issue over a year ago there has been no movement. https://github.com/k3s-io/k3s-ansible/issues/190 I think missing scripts for basic management in alignment with k3s docs makes using this playbook...

question

Was hoping to try out the precompiled binaries, but AppVeyor only stores artifacts for 6 months. This project doesn't build for me directly after cloning the repo. Maybe someone can...

Just wanted to explore what GC stats were getting captured, so i added `go metrics.CaptureDebugGCStats(metrics.DefaultRegistry, 10*time.Second)` and It appears to panic because `debugMetrics.ReadGCStats` is a Timer interface that is never...

I'm finding that if i try to retrieve an attribute that doesn't exist, nothing happens. My callback just doesn't fire. Is this by design? It seems like it would make...

Type: Bug
Priority: High

I'm not sure why but this library aborts successful options requests -> https://github.com/gin-contrib/cors/blob/90bd363599befa876b8a8d351dea21aa5d58e5d7/config.go#L92 According to GIN godoc abort prevents handlers from running. this seems like an error to me. This...

## Description The Postgres size metric seems to run the following query `"SELECT pg_database.datname, pg_database_size(pg_database.datname) as size_bytes FROM pg_database"` seen (https://github.com/go-gorm/prometheus/blob/54c3070d1effea802b2d9db71a2e7032fa36b78a/postgres.go#L207) This query fails with the following on AWS RDS...