Adam Mertz

Results 16 comments of Adam Mertz

To the people running into the tasks never actually running...it sounds like an issue w/ the scheduler not being ran (I wondered the same thing for half a day). If...

Hadn't thought to check the builtin `json` lib. Looks like it's not supported. As far as code snippet. ```python >>> ujson.dumps({"key": UUID("abc...")} '{"key": "abc..."}' ```

I think this is fairly straightforward to implement as the function is aliased on import. You can easily provide a deprecation warning. ```python # s3.py def s3_iter_bucket(*args, **kwargs): warnings.warn("deprecation msg",...

Is this still a valid issue? I could probably contribute here but I'm not clear as to what the issue is. It looks like pytest is being used to run...

Ran into this issue too. Found the following. https://forum.arduino.cc/index.php?topic=376923.0 I'm on Mac so for me it looks like from the root of my hardware folder `/Applications/Arduino.app/Contents/Java/hardware/` I build my `fqbn`...

@rtpg Here is the errors in our logs. ``` 2021-03-29T10:58:30.851-05:00 | psycopg2.errors.UniqueViolation: duplicate key value violates unique constraint "access_token_source_refresh_token_id_key" 2021-03-29T10:58:30.851-05:00 | DETAIL: Key (source_refresh_token_id)=(7636288) already exists. 2021-03-29T10:58:30.851-05:00 | The above...

Bump on this issue. If I'm understanding this would it also apply to the `POST /oauth/token/` endpoint? We have external users running into this issue. We're not entirely sure how...

Appears there is still an issue as I am getting an "IncorrectlySigned" error when logging into the IDP.

So what I did for now is comment out the fix. Modify the settings to actually sign the response. Then wrote a test to verify the 500. That test will...

So I am not running into any issues running the tests locally. Not sure what the issue in the build process is.