Jeremy Mayeres

Results 15 comments of Jeremy Mayeres
trafficstars

From my understanding, you can't easily trigger another workflow from GitHub Actions, so you might need to still have something that can respond to webhooks in order to trigger the...

It looks like the last commit added a parameter not available in helm3.

The Github integration should be extended to match permissions on a repository with permissions in CI. So for private repos, if you have read-only permission on Github, it should allow...

It would also be super to have Kubernetes secrets passed through. This would be especially useful for things like registry authentication, where we don't necessarily want to have to set...

Having looked a bit at the code, I think this would be a pretty sizable project, as most of the secrets-handling is expecting to look up based on the `$secret`...

This will need a bit more thought, perhaps `make_filtering_bound_logger` should move to stdlib so it can create a subclass of `BoundLogger`, rather than `BoundLoggerBase`? The `BoundLogger` class handles positional arguments...

Gunicorn allows you to specify a logger class to use: https://docs.gunicorn.org/en/stable/settings.html#logger-class, so by adapting it similar to what I found in [this gist](https://gist.github.com/airhorns/c2d34b2c823541fc0b32e5c853aab7e7), I was able to have Gunicorn log...

Thanks, I haven't had a chance to fully test it but looking at the code, it looks like it should work! 🎉

I've created a sample repo that shows this issue: https://github.com/jerr0328/celery-return-types You can run `docker-compose up --build` to see the whole thing happen on a real redis/rabbitmq setup. This results in...

msgpack also chokes with numpy: Click to see exceptions ``` [2019-07-03 07:23:36,985: ERROR/ForkPoolWorker-2] Task sample.tasks.do_work[f6184338-73e9-426c-99f0-c0d6ee5a976e] raised unexpected: EncodeError(TypeError("can not serialize 'numpy.float32' object",),) Traceback (most recent call last): File "/usr/local/lib/python3.6/site-packages/kombu/serialization.py", line...