Alexandru Gologan

Results 94 comments of Alexandru Gologan

Unfortunately I do not understand what you want exactly. You may however go look and debug cancellation in our [AuthorizationManagementActivity](https://github.com/openid/AppAuth-Android/blob/master/library/java/net/openid/appauth/AuthorizationManagementActivity.java) and if you can be more precise in what data...

I honestly wonder what the value of such an issue is, and whether it truly matters? Are you asking because there are genuine problems with the lib that need addressing...

I haven't been very explicit previously but per the license (actually most OSS licenses) the software is provided "AS IS" which in turn means that as the user if you...

Good point. I did try to reach out separately to @WilliamDenniss to help out but maybe @petea or somebody else @google might want to chime in and contribute to the...

Despite the version, the library it has been good enough for most uses for a very long time. (at least 2018) Historically, the login flow was broken several times due...

Grafana Agent is very versatile and can replace most if not all our telemetry needs. Especially Flow makes it seem that you can drop all your use-cases in one river,...

After some careful consideration have marked my above comment as off-topic. While not completely irrelevant, my testimony is not very actionable and wouldn't want to waste maintainers' time with it...

```js router.get('/schema/latest', asyncWrap(schema.composeLatest)); ``` ```js export async function composeLatest(req, res) { const schema = await getAndValidateSchema(connection, false, false); return res.json({ success: true, data: schema, }); } ``` At a quick...

Added a sanity test to `schema.itest.ts` to ensure composition works. Added new tests to `router/index.itest.ts` using `supertest` which call via express router testing the caching layer as well. **LE**: Provided...