Tonye Jack
Tonye Jack
An alternative would be ```py @property def client(self): if self._client is None: scope = ( "https://www.googleapis.com/auth/devstorage.full_control", "https://www.googleapis.com/auth/devstorage.read_only", "https://www.googleapis.com/auth/devstorage.read_write", ) credentials, _ = google.auth.default(scopes=scope) threads = settings.COLLECTFAST_THREADS adapter = HTTPAdapter( pool_connections=threads,...
The issue here is using multiple SECRET_KEY's often for some test database you get to face errors like #26 due to not using the same key to decrypt the secret....
@auvipy Any issues merging this, running into a similar problem that can be simplified using path converters.
@zbyte64 I'll like to also get involved, currently actively using graphene-django in production.
Modifying @olalonde suggestion can also use the DRF encoder. ```python def serializer_func_mapper(x, fn): if isinstance(x, six.text_type): return six.text_type(x) if isinstance(x, six.integer_types): return int(x) if isinstance(x, dict): return {k: serializer_func_mapper(v, fn)...
@lmcgartland Any chance we can merge this soon and create a new release ?? Thanks
@walterholohan Fixed here https://github.com/cirrus-actions/rebase/pull/70
@walterholohan it seems `actions/checkout@v2` fails with the default `github.token` Update ``` name: Automatic Rebase on: issue_comment: types: [created] jobs: rebase: name: Rebase if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') runs-on:...
@walterholohan Try again using  Note for workflows that modify github actions you can enable 
Fixed all usage of linux based path seperator.