Pierre-Emmanuel Jacquier
Pierre-Emmanuel Jacquier
For me, it's weird, Joal is choosing the wrong WebSocket port... I set up Joal on the server port 443 ```Yaml joal: image: anthonyraymond/joal:latest restart: always volumes: - ./services/joal:/data command:...
Okay my bad sorry: https://github.com/anthonyraymond/joal/issues/224#issuecomment-1780938274 BTW The red button sounds more like an error message :D For me all is working for traefik 🎉
It's an issue happening not on all providers, some provider returns a type as string other provider the same type as an Integer, that's why I created flexint type, I...
All tests are OK ``` $ go test ./... -cover -race ok github.com/koding/multiconfig 0.054s coverage: 70.5% of statements ```
I'm getting the reference yaml node with `GetReferenceNode()` and currently it works for me: Here is my current workaround ```Golang // https://github.com/pb33f/libopenapi/issues/283 func isNullableReference(node *yaml.Node) bool { if node ==...
> Just an FYI, you can use `utils.FindKeyNodeTop()` to pull out the `nullable` key > > https://github.com/pb33f/libopenapi/blob/main/utils/utils.go#L260 Thanks for the help :)