Wesley Ellis

Results 5 issues of Wesley Ellis

Currently, inside the pusher method of cluster, errors are handled like so: ```py logger.error(e, traceback.format_exc()) ``` [src](https://github.com/Koed00/django-q/blob/master/django_q/cluster.py#L347) The problem is that this isn't a valid set of arguments for the...

Instead of checking if the django-q logger has any handlers directly, use the [hasHandlers](https://docs.python.org/3/library/logging.html#logging.Logger.hasHandlers) method, which will check if any parent loggers have handlers as well. This fixes a bug...

You mentioned renaming source -> sauce to comply with SIL Open Font license, but when the fonts are installed on Ubuntu 18.04, they show up as 'Source Code Pro with...

It appears that the pip package on pypi doesn't include any of the `.sql` files required to make this work. I believe you need to add a [manifest.in](https://packaging.python.org/guides/using-manifest-in/) to instruct...

Problem: When running graphiql-rails and sprockets 4.0.0, accessing graphiql raises `Sprockets::Rails::Helper::AssetNotPrecompiled in GraphiQL::Rails::Editors#show` Following the suggestion of ``` Asset `graphiql/rails/application.css` was not declared to be precompiled in production. Declare links...