Vijay Nayar
Vijay Nayar
The documentation and examples for `DependencyContainer` all show it to be used as a shared object. However, it is not clear in the documentation for [resolve](https://github.com/mbierlee/poodinis/blob/365d5895c3331863731201bd58daa1a3a1237ceb/source/poodinis/container.d#L263) or [register](https://github.com/mbierlee/poodinis/blob/365d5895c3331863731201bd58daa1a3a1237ceb/source/poodinis/container.d#L142) whether objects...
When compiling using dub and the "profile" build profile, vibe-core has the following warnings which prevent successful compilation: ``` $ dub build --build=profile /usr/include/dmd/phobos/std/concurrency.d(2160,17): Warning: statement is not reachable ../../.dub/packages/vibe-core-1.22.4/vibe-core/source/vibe/internal/async.d-mixin-164(190,7):...
*Title*: *HTTP Connection Manager Documentation is Missing Psuedo-Headers* *Description*: The documentation for the HTTP Connection Manager is incomplete with regards to pseudo-headers. The `:scheme` header is documented, but the `:method`...
When attaching a handler to a WebSocket like so: ``` @Autowire URLRouter router; @PostConstruct void postConstruct() { logInfo("Registering RtcNotifier as HTTP GET " ~ PATH); router.get(PATH, handleWebSockets((WebSocket sock) => handleConnection(sock)));...
https://github.com/vibe-d/vibe.d/blob/fee38720a3aa16f68d9296508bddc1f0b094cefb/web/vibe/web/web.d#L216-L228 When an HTTP GET request arrives, e.g. "/configs" that is missing a trailing slash, the code above causes this to be a redirect to "/configs/". However, because the redirect...
# Summary As seen in the following image, plantuml-mode applies the font-face associated with comments in the middle of a line that contains a single quote:  In this image,...
Is it currently possible to have a multi-column primary key? For example, imagine a table of passports, and each person can actually get several passports over the course of their...
Running the command `dub run profdump -- --blame trace.log profdump2.txt` results in a `RangeError` which prevents the flag from being used. ``` Running ../../../../.dub/packages/profdump-0.4.3/profdump/profdump --blame trace.log profdump2.txt core.exception.RangeError@../../../.dub/packages/profdump-0.4.3/profdump/source/app.d(134): Range violation...
After compiling in profile mode, running the program, and then running profdump 0.4.3 on the resulting trace.log file, JSON output fails to be produced, although "dot" and "text" still function...
## Summary Once database connections fail, due to a database being restarted or going down, these invalid connections always return to the connection pool, preventing a DB connection from being...