Roger Chen

Results 9 comments of Roger Chen

We got similar issue in one of our applications. After investigation, we found this is caused by https://bugs.openjdk.org/browse/JDK-8172726. Start with Java 9, `ForkJoinPool` creates thread using system class loader as...

The fix in https://github.com/spring-cloud/spring-cloud-commons/pull/1098 tries to use the class loader of parent `ApplicationContext` in child `ApplicationContext`: > context = new AnnotationConfigApplicationContext(beanFactory); > context.setClassLoader(this.parent.getClassLoader()); However typically the parent `ApplicationContext` doesn't set...

Our applications use a different workaround. We created `ApplicationContextInitializer` implementation (and added to `spring.factories`) to manually set the class loader as the context class loader who starts the application. ```...

I still see this issue in `1.19.240130002`. I have narrow down the issue to the `TERM` settings. If I set `TERM` to either `xterm-256color` or `ms-terminal`, this issue is gone....

I got the same issue with the latest version. I also tried the `-delay-adb` option and no lucky. It seems as long as AVD outputs "Boot completed" message, Appium can...

I checked the source code at https://github.com/appium/appium-adb/blob/289914ec0de9942f99a8189fc82cffb6fa3646a4/lib/tools/system-calls.js#L937. The API level I use is 36. It seems there are some timing issues, when `shell cmd reboot_readiness check-subsystems-state --list-blocking` returns true, the...

I updated `uiautomator2` to `5.0.4` version and everything works smoothly. I can always see Appium run `adb` command after AVD outputs "Boot completed" message. Thanks @mykola-mokhnach for the fix!

However change `file.encoding` may have impact to application logic. If not handled properly, some strange characters will be stored. It will be ideal if GraalVM can handle it without touch...