Marcus Ilgner
Marcus Ilgner
There are some use cases where I'd like to use the `count` functionality so that if you have an enum `model_type` and then you want to show a list of...
As several notifiers submit notices in slightly different formats, it would be great to have special templates for different notifiers, especially in regard to links to the source repository. Hoptoad4J...
Right now it uses the default popup from TeamCity. I need to find a way to customize it, have asked TeamCity team for a hint.
There was some previous conversation about it in #1251 but I didn't find any code in the current version of the repository to get it working. So I wrote my...
After adding support for DateTime2 types, I thought I'd give implementing packet chunking for the MS SQL connector a go. I'm a total noob when it comes to the TDS...
When trying to run a long query against an MS SQL server, I'm getting `Io(Kind(ConnectionAborted))`. After some trial and error, I have narrowed down the issue to the query string...
Depending on the configuration of the ActiveJob backend and the serializer used - i.e. the `NULL` serializer -, it is possible that the argument to `perform` is already a full...
Trying to use the async handler in my ActiveJob class like so: ``` class MyEventProcessingJob < ApplicationJob prepend RailsEventStore::CorrelatedHandler prepend RailsEventStore::AsyncHandler.with(serializer: RubyEventStore::NULL) def perform(the_event) end end ``` This works flawlessly...
I'm running a server based on the [Vert.x](vertx.io) framework. To support testing of asynchronous code, they provide a JUnit5 extension which injects an instance of Vertx and a VertxTestContext. In...
Scenario: my actor registers a schedule and I was under the impression that I should cancel the schedule when the actor is shutting down. Unfortunately, `Actor::post_stop` doesn't have a reference...