Vibin reddy

Results 23 comments of Vibin reddy

This seems to be still broken in 2.9.1, but it's fairly easy to work around. Sharing this simple script in case its useful for anyone: ```bash #!/bin/bash set -eo pipefail...

This tool might have just saved my MBP from choking. Thank you! Normal builds: 20-25 secs Clean builds: 50 secs On a t2.large EC2 instance, with a lot of kapt...

Any progress? I can see that this line in the webp.js file is creating folders. But I'm a beginner at Javascript stuff, so not really sure. ``` grunt.file.mkdir(dest); ```

@adinauer Got it, we will try initing on a background thread

@adinauer All of them are background process creations, but that could just be because Android never throws ANRs for foreground application start Yes, the devices are low-end: Galaxy M21 (7%),...

@adinauer sure, we use custom init with the below block: ```kt SentryAndroid.init(context) { options: SentryAndroidOptions -> options.apply { release = BuildConfig.VERSION_NAME dsn = BuildConfig.SENTRY_DSN isEnableNdk = false sampleRate = null...

@adinauer it's reported by Crashlytics (which is initialised as a ContentProvider, much before Sentry is initialised). Attaching few insights surfaced by Crashlytics: Documentation regarding these tags: https://firebase.google.com/docs/crashlytics/debug-anr-errors?authuser=1&hl=en#io-root-blocking-tag

@marandaneto FWIW, I like that Sentry doesn't use WorkManager/AlarmManager, etc. to auto-initialise background jobs for sending cached events – because, I have a usecase where I initialise Sentry conditionally (only...

Heads up: Crashlytics alpha build has started tracking (background + foreground) ANRs with the help of [getHistoricalProcessExitReasons](https://developer.android.com/reference/kotlin/android/app/ActivityManager#gethistoricalprocessexitreasons) on Android 11 and above. This would be a sweet addition to Bugsnag

While the IntelliJ plugin does use the same agent.js to fetch completions from /engines/copilot-codex, it doesn't support `debug.overrideProxyUrl`. Yes, you can override system proxy directly in IntelliJ itself, but Copilot...