el3ng

Results 9 comments of el3ng

Related to this, I also find https://github.com/GetBlimp/django-rest-framework-jwt/blob/5cdc62cb817149ff5fb57b6a19a6980b98d0dba7/rest_framework_jwt/serializers.py#L168 a bit hacky solution to maintaining the original `orig_iat` after `jwt_payload_handler` when refreshing versus creating. It seems like `orig_iat` should not be handled...

@baransu ah my example was a bit short... > You have no fields in Foo or FooValidationErrors thus you're not querying any fields in mutation response. This is incorrect, I...

I'm also interested in this, my current solution that I came with completely independently of your discussions looks like this: ```typescript import type { JobHelpers, Task } from 'graphile-worker' export...

They are probably referring to `testResult.failureMessage` while this PR is also adding ```javascript this.stdio.log('\nLogs outputted during this test: \n'); if (testResult.console) { testResult.console .map(entry => entry.message) .forEach(this.stdio.log); } ``` which...

@Hubro > if I could go from visual block mode to Multi-Cursor mode. Does `cmd+shift+L` work for ya? (Add Cursors to Line Ends) In general I find this plugins support...

@Hubro might also be `SHIFT + ALT + I` https://nickjanetakis.com/blog/insert-multiple-cursors-at-the-start-of-every-line-with-vscode Search for `"Add Cursors to Line Ends"` in your settings

Still broken with: ``` platform darwin -- Python 3.11.1, pytest-7.4.0, pluggy-1.3.0 plugins: anyio-4.0.0, xdist-3.3.1, kolo-2.14.0, django-4.5.2, Faker-19.3.1 ``` and ``` django==4.2.5 ``` when using python-xdist (`pytest -n2 pat/to/test`). The behavior...

So it seems the upgrade path for django-invitations is something like: 1. manually rollback 0004 (manage.py migrate invitations 0003) and hope it doesn't destroy any data 2. update to 2.1.0...

Also this person may be having the same problem https://github.com/pytest-dev/pytest-django/issues/1068 A really simple fix for testing is to `INSTALLED_APPS.remove("debug_toolbar")` which I guess makes sense to do anyway 😅