Paul Brown

Results 18 issues of Paul Brown

This PR makes some improvements to settings/dev.py: * You don't need whitenoise middleware defined in both `MIDDLEWARE_CLASSES` and `MIDDLEWARE` for recent versions of django. So I removed the `MIDDLEWARE_CLASSES`. *...

Visiting http://localhost:8080/api/admin will not load the django admin css. You'll get 404 errors on /static/admin/*. Same with the rest_framework styling when you visit an api endpoint through the browser. This...

I think it would help accelerate the development of your project if we worked on a guide for people who want to create new providers. Some basic explanations of things...

waffle:ready

The pure python binary protocol will throw errors like this when it's unable to decode a value: ``` AttributeError: 'int' object has no attribute 'encode' ``` The cython version of...

Here's the scenario: 1. Client calls Service A 1. Service A calls Service B 1. Service A receives TTransportException while calling Service B (in my example this was because I...

When you pip install the library, the example code won't work unless you move the flask_imgur.py file outside of the directory it's installed into (also called flask_imgur). ``` mv /usr/local/lib/python2.7/dist-packages/flask_imgur/flask_imgur.py...

Fixes: https://github.com/celery/celery/discussions/7276 Caused by: https://github.com/celery/kombu/pull/1476 Currently, the Redis transport will always remove the last function added to the event loop (`on_tick`) regardless of which connection is disconnected. If you restart...

Fixes #111 and #113 Currently [docker-wireguard](https://github.com/linuxserver/docker-wireguard) uses the `PEERS` environment variable and not the `WIREGUARD_PEERS` that's currently in wirehole's docker-compose file. Example: [Link to docker-wireguard search for PEERS](https://github.com/search?q=repo%3Alinuxserver%2Fdocker-wireguard+%2F%28%3F-i%29PEERS%2F&type=code) This results...

There's no mention of `WIREGUARD_PEER_DNS` in docker-wireguard, but they do have `PEERDNS` which is currently defaulting to `auto` (results in the INTERNAL_SUBNET's gateway ip being used, but the docs say...

This PR removes these unused lines from .env.example: ``` # Subnet for the private network - NOT USED IN COMPOSE FILE, CAN BE REMOVED # SUBNET=10.2.0.0/24 ```