Rafał Jęczalik
Rafał Jęczalik
@Takeoffyoung In order to use Kontrol API you need to configure its endpoint first, e.g. ``` k := kite.New("name", "1.0.0") k.Config.KontrolURL = "http://example.com/kontrol/kite" ``` Next problem you may encounter is...
@Takeoffyoung Can you show me your code just to confirm?
@Takeoffyoung `kite.New()` uses default configuration, it does not read kite.key nor environment. Your code needs `config.Get()` or `config.MustGet()` for that, like this: https://github.com/koding/kite/blob/master/examples/math-register/math-register.go#L29
How about a separate `stderrors` subpackage with specialised `Cause(error) error` function which would do the unwrapping? I faced similar problem - I needed to unwrap error coming from external package...
> Error: The security token included in the request is invalid. The same error happens when GitHub OIDC provider is used with `role-to-assume`. When two different actions within the same...
Hey @edrex, @nathany! If you'd want to use `IN_MOVE_{FROM,TO}` events for inotify, then notify supports them out of the box - see `LinuxMove` example for the [Watch](https://godoc.org/github.com/rjeczalik/notify#Watch) method, in particular:...
/cc @gokmen
@vitalyp This is not a bug, thus no workaround. It's a missing feature, we're not there yet. We welcome any contributions, I can serve as a roadmap if you'd like...
Prerequisites - [x] kite: test on windows (~https://github.com/koding/kite/pull/202~) - [ ] klient: build on windows - [x] klient/terminal: stub on windows (~https://github.com/koding/koding/pull/10952~) - [ ] kites/terraformer: stub/fix build on windows...
This error `Starting new session failed. Want: 200 Got: 502` usually means that public kite endpoint is not reachable. Kd must be able to reach `$KONTROLURL`, e.g.: ``` $ export...