bound2

Results 7 comments of bound2

``` new SpringApplicationBuilder(Application.class) .web(WebApplicationType.NONE) .run(args); ``` Maybe something like this would work?

Tried it with https://github.com/hojongs/kotlin-spring-boot-grpc-example and it seemed to stay in `started` state. Didn't test endpoints themselves. E: but of course it uses different implementation of spring boot grpc starter

Did you get it to work? Can't find any place where to plug in the **ChannelInterceptor**

Is there any necessity to make these changes? It works fine when you just provide `Gin` router handler to `quic-go`. Versions used ``` go 1.21 github.com/gin-gonic/gin v1.9.1 github.com/quic-go/quic-go v0.43.1 ```...

> @jarrodhroberson It is indeed recommended to change to `map[comparable]any` for better practice, but unfortunately, Go does not support this format. After checking the official documentation, no better solution has...

In your first code example, you are appending value to slice from env variable `ALLOW_LOCAL_HOST`. ``` if v, ok := os.LookupEnv("ALLOW_LOCAL_HOST"); ok { allowedOrigins = append(allowedOrigins, v) } ``` It's...