Christopher Coco
Christopher Coco
@baughmann thanks for the issue. Have you taken a look at the Streaming documentation? https://twitter.github.io/finatra/user-guide/http/streaming.html We can probably do some more work to document and tie things together, but I...
Possibly related to https://github.com/twitter/finatra/issues/271.
@shikhahere01 @shikhahere as @yufangong asked and alluded to, for your code above are you accessing the MDC values from within the function scope of the MDCInitializer.let closure? If not the...
Based on the link to the scala-logging project, isn't that the same as [here](https://github.com/twitter/util/blob/1904b60ab81c07e1257f30dca9d41494899148a9/util-slf4j-api/src/main/scala/com/twitter/util/logging/Logger.scala#L69)?
@Kyochi you can always drop in an authentication filter for your chosen authentication (or something smarter that disallowed the request to reach certain routes based on your notion of "env")...
@brisssou For the most part Finatra is meant to work with SLF4J-API logging implementation and the [MDC initialization](https://github.com/twitter/finatra/blob/684ae77344644243c5be83b68fb176ca6edc0c11/inject/inject-mdc/src/main/scala/com/twitter/inject/logging/MDCInitializer.scala#L7) is really only tested to work with SLF4J-API implementations. Log4J2 is an...
@niodice using the `SIGTERM` (as opposed to calling `close()` on the server) is going to bypass a lot of the graceful shutdown mechanics, IIRC. The most straightforward thing to do,...