Joshua Erney

Results 8 comments of Joshua Erney

That might be a reasonable default, but there are other potential values. For example, `refresh_token`. Also, consider Keycloak: https://www.keycloak.org/docs/2.5/authorization_services/topics/service/protection/token-introspection.html. Example request: ``` curl -X POST \ -H "Authorization: Basic aGVsbG8td29ybGQtYXV0aHotc2VydmljZTpzZWNyZXQ="...

It only seems appropriate that I take care of this with [Servo Issue #7480](https://github.com/servo/servo/issues/7480). Count me in on this one.

Sounds good to me. I'll give you a shout next week if I haven't heard back from you by then.

Well now I know what the 'Close and comment' button does...

Not a problem. I'll address Mock and patch first. You can learn more about Python's mock library [here](https://docs.python.org/3/library/unittest.mock.html) and [here](https://docs.python.org/3/library/unittest.mock-examples.html). The reason behind using the library is twofold: - Mocks...

Here's an overview of the design: - `payloadreceiver.py` - receives JSON payloads. Entry point to the application. - `payloadhandler.py` - - `TravisPayloadHandler` - this class handles JSON payloads received from...

@jdm, if you'd rather chat about the design, tests, etc., on the Servo IRC, just let me know. I'm free most days after 5:00 PM EST

No worries on the delay, I appreciate you taking the time to look over the code. Thank you for the valuable feedback, as well. Outside of test.py, I believe we're...