Results 13 comments of Vijay Nayar

I have run into this problem as well and while searching for answers, I ran into this GitHub issue. In the current dub version, the system does work, but it's...

Thank you for the clarification! I wasn't sure if it was meant to be a singleton specific to each thread or a global singleton.

Looking through the unittests, this test does a good job of illustrating how the objects are related: https://github.com/mbierlee/poodinis/blob/8bd88fbcb9d603aa1de8f3d58c8d8f6225b692a6/test/poodinis/containertest.d#L389 It was confusing at first, because when you use `DependencyContainer.resolve`, it doesn't...

> The `:authority` and `:path` are mentioned in the same doc, but could probably benefit from their own entry. Contributions are welcome. A PR has been prepared here: https://github.com/envoyproxy/envoy/pull/23240

Please see https://github.com/editorconfig-checker/editorconfig-checker/pull/319, which is ready for review.

This problem only seems to occur when a `@path` annotation is on both the class itself and the method, e.g.: ```d @path("/web/checkout") class CheckoutController { // Use the /web path...

Interesting. I happen to be using Envoy Proxy, and it seems to split the information into a few headers: - origin :: This contains the original scheme, host, and port,...

I enabled the `use_remote_address` and tried it with my local server. The `x-forwarded-for` header is now present, but it merely contains an IP address, which I believe is for the...

Support for this has been added in https://github.com/buggins/hibernated/pull/84. The interface follows the norms of Hibernate. Through a session, you can `beginTransaction()` to get a `Transaction` object, on which one can...

This is one of those intractable problems that even the original Hibernate is unable to solve. The root of the issue is that some changes simply aren't able to be...