Ayhan APAYDIN

Results 13 comments of Ayhan APAYDIN

I was checking this too but as I understand current library doesn't support touch events. Because coordinates in touch events are at `e.changedTouches[0].clientX` instead of the current code which only...

I am also having difficulty with build-time config like `quarkus.liquibase-mongodb.change-log` while doing @QuarkusIntegrationTest. Even if I use `quarkus.test.profile=test` or `quarkus.test.native-image-profile=test`, because `quarkus.liquibase-mongodb.change-log` is a build time config, setting runtime quarkus...

Can be reproduced with app router playground. Still the same problem with 14.1.0. Check the video for a reproducer. https://github.com/vercel/next.js/assets/5447639/f85b7fd7-99d3-4b5f-98fb-f02fac9c389b

Any update on this? I see some referenced commits, but it didn't move on. If no one is looking into it, I might supply a PR if needed.

Would love to see this merged, any help needed?

Ok, I will analyze both PRs and list differences. There are many optional fields but the critical fields are severity and message(containing stacktrace). Without these, all logs are shown as...

I've been using Cloud Tasks in my quarkus application for a while. I hope I didn't miss anything because it's been a while and hard to extract needed parts. To...

I got inspired by existing code from other gcloud services, I just copied the storage one I guess :) Might be right about unnecessary exclusions, been a while don't remember...

I have similar operation like in https://github.com/vert-x3/vertx-web/issues/2408#issuecomment-1542635585. Which resolves to a `ChainAuthHandler` having two `JWTAuthHandlerImpl`. But if first requirement fails with scopes, context is failed and 2nd one's scopes not...

@tsegismont Yes, actually before this update `ChainAuthHandler` with two `JWTAuthHandler` wasn't checking scopes because `JWTAuthHandler` checks scopes at `postAuthentication`. The situation now is a `ChainAuthHandler.any()` with two `JWTAuthHandler`: - If...