Leo Arnold
Leo Arnold
Great idea! Also, Ruby please: 
For systemd-based deployments, it's basically: * Tailor systemd unit template to your needs: https://github.com/mperham/sidekiq/blob/master/examples/systemd/sidekiq.service * Extract Sidekiq log file from syslog if needed: https://stackoverflow.com/a/43830129 * Replace this gem with something...
@twistedjoe True that, yet most users do not require the versatile support for the whole variety of init systems. Since this project is not very active (see screenshot below), it...
@gauravm31 That is because you installed the systemd unit in system space, not in user space. To run services in user space, [enable-linger](https://www.freedesktop.org/software/systemd/man/loginctl.html) for the unprivileged user and then follow...
@phlegx FYI
Hey @njh, good to see this progressing! >Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable. https://semver.org/#spec-item-4...
@njh Malicious actors aside, the current code will first send a package and then add it to the list of "awaiting PUBACK". This allows for a race condition: If the...
@acidtangodev Obsoleted by #41
@wvanbergen I'm not really sure how to go about adding tests for this. The test suite seems to rely a lot on stubbing.
Using `git bisect` I identified this as the first "bad" commit: https://github.com/rails/sprockets/commit/a3e3a40bb509586e0e325f5057a1637ec8da0cb9 When I branch off sprockets v4.0.0 and revert this commit asset compilation works just fine again. Hence I...