[jira] [Commented] (CB-8977) java.util.ConcurrentModificationException in java.util.HashMap$HashIterator.nextEntry

2015-12-23 Thread Aaron Bernstein (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15070145#comment-15070145
 ] 

Aaron Bernstein commented on CB-8977:
-

Am experiencing this on 5.0.0
linking in all the other tickets, but posting here because it seems the least 
resolved:
https://issues.apache.org/jira/browse/CB-9292
https://issues.apache.org/jira/browse/CB-8031
https://issues.apache.org/jira/browse/CB-7968
https://crosswalk-project.org/jira/plugins/servlet/mobile#issue/XWALK-3096

> java.util.ConcurrentModificationException in 
> java.util.HashMap$HashIterator.nextEntry
> -
>
> Key: CB-8977
> URL: https://issues.apache.org/jira/browse/CB-8977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.7.1
> Environment: Samsung Galaxy S4 on Android 4.4
>Reporter: Hirbod
>Assignee: Joe Bowser
>
> I've received two crashreports. I think they are related to cordova and some 
> of the plugins. The plugins are all up-to-date. I'm using CLI 5.0.0 but still 
> on Android-JS 3.7.1 (can't upgrade right know)
> I've upgrade all the plugins from the new npm-repo, I don't know if this is 
> related, but before upgrading the plugins, everything worked well.
> Here is the crash report:
> java.util.ConcurrentModificationException
> at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
> at java.util.HashMap$ValueIterator.next(HashMap.java:838)
> at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
> at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:515)
> at org.apache.cordova.splashscreen.SplashScreen$1.run(SplashScreen.java:128)
> at android.os.Handler.handleCallback(Handler.java:733)
> at android.os.Handler.dispatchMessage(Handler.java:95)
> at android.os.Looper.loop(Looper.java:157)
> at android.app.ActivityThread.main(ActivityThread.java:5356)
> at java.lang.reflect.Method.invokeNative(Native Method)
> at java.lang.reflect.Method.invoke(Method.java:515)
> at 
> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1265)
> at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1081)
> at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8977) java.util.ConcurrentModificationException in java.util.HashMap$HashIterator.nextEntry

2015-12-23 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15070671#comment-15070671
 ] 

Joe Bowser commented on CB-8977:


[~BernsteinA] This is closed as incomplete because we need repro steps.  It 
looks like a concurrency issue, but I need a way to force this failure before I 
can really make sure that this is fixed.  Everyone talks about the fix, but I 
haven't been given a solid repro case for the problem, which is probably why it 
keeps coming back. :(

> java.util.ConcurrentModificationException in 
> java.util.HashMap$HashIterator.nextEntry
> -
>
> Key: CB-8977
> URL: https://issues.apache.org/jira/browse/CB-8977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.7.1
> Environment: Samsung Galaxy S4 on Android 4.4
>Reporter: Hirbod
>Assignee: Joe Bowser
>
> I've received two crashreports. I think they are related to cordova and some 
> of the plugins. The plugins are all up-to-date. I'm using CLI 5.0.0 but still 
> on Android-JS 3.7.1 (can't upgrade right know)
> I've upgrade all the plugins from the new npm-repo, I don't know if this is 
> related, but before upgrading the plugins, everything worked well.
> Here is the crash report:
> java.util.ConcurrentModificationException
> at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
> at java.util.HashMap$ValueIterator.next(HashMap.java:838)
> at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
> at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:515)
> at org.apache.cordova.splashscreen.SplashScreen$1.run(SplashScreen.java:128)
> at android.os.Handler.handleCallback(Handler.java:733)
> at android.os.Handler.dispatchMessage(Handler.java:95)
> at android.os.Looper.loop(Looper.java:157)
> at android.app.ActivityThread.main(ActivityThread.java:5356)
> at java.lang.reflect.Method.invokeNative(Native Method)
> at java.lang.reflect.Method.invoke(Method.java:515)
> at 
> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1265)
> at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1081)
> at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8977) java.util.ConcurrentModificationException in java.util.HashMap$HashIterator.nextEntry

2015-06-19 Thread Karen Tran (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14593412#comment-14593412
 ] 

Karen Tran commented on CB-8977:


If anyone is still getting this exception in 3.7, try pulling in the change 
from CB-8411 too. That fixed this exception for me and without it, was probably 
causing a race condition, thus ConcurrentModificationException occurs during 
plugin init stage. 

+1 for [~csantana] for figuring this out. 

 java.util.ConcurrentModificationException in 
 java.util.HashMap$HashIterator.nextEntry
 -

 Key: CB-8977
 URL: https://issues.apache.org/jira/browse/CB-8977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.7.1
 Environment: Samsung Galaxy S4 on Android 4.4
Reporter: Hirbod
Assignee: Joe Bowser

 I've received two crashreports. I think they are related to cordova and some 
 of the plugins. The plugins are all up-to-date. I'm using CLI 5.0.0 but still 
 on Android-JS 3.7.1 (can't upgrade right know)
 I've upgrade all the plugins from the new npm-repo, I don't know if this is 
 related, but before upgrading the plugins, everything worked well.
 Here is the crash report:
 java.util.ConcurrentModificationException
 at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
 at java.util.HashMap$ValueIterator.next(HashMap.java:838)
 at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
 at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:515)
 at org.apache.cordova.splashscreen.SplashScreen$1.run(SplashScreen.java:128)
 at android.os.Handler.handleCallback(Handler.java:733)
 at android.os.Handler.dispatchMessage(Handler.java:95)
 at android.os.Looper.loop(Looper.java:157)
 at android.app.ActivityThread.main(ActivityThread.java:5356)
 at java.lang.reflect.Method.invokeNative(Native Method)
 at java.lang.reflect.Method.invoke(Method.java:515)
 at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1265)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1081)
 at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8977) java.util.ConcurrentModificationException in java.util.HashMap$HashIterator.nextEntry

2015-05-07 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14532929#comment-14532929
 ] 

Joe Bowser commented on CB-8977:


Which plugins are you using?  It's clear that two plugins are trying to post a 
message to the other plugins at the same time, causing concurrency problems.  
Can you provide a bit more info so that we can reproduce this concurrency 
problem on our end? 

 java.util.ConcurrentModificationException in 
 java.util.HashMap$HashIterator.nextEntry
 -

 Key: CB-8977
 URL: https://issues.apache.org/jira/browse/CB-8977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.7.1
 Environment: Samsung Galaxy S4 on Android 4.4
Reporter: Hirbod

 I've received two crashreports. I think they are related to cordova and some 
 of the plugins. The plugins are all up-to-date. I'm using CLI 5.0.0 but still 
 on Android-JS 3.7.1 (can't upgrade right know)
 I've upgrade all the plugins from the new npm-repo, I don't know if this is 
 related, but before upgrading the plugins, everything worked well.
 Here is the crash report:
 java.util.ConcurrentModificationException
 at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
 at java.util.HashMap$ValueIterator.next(HashMap.java:838)
 at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
 at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:515)
 at org.apache.cordova.splashscreen.SplashScreen$1.run(SplashScreen.java:128)
 at android.os.Handler.handleCallback(Handler.java:733)
 at android.os.Handler.dispatchMessage(Handler.java:95)
 at android.os.Looper.loop(Looper.java:157)
 at android.app.ActivityThread.main(ActivityThread.java:5356)
 at java.lang.reflect.Method.invokeNative(Native Method)
 at java.lang.reflect.Method.invoke(Method.java:515)
 at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1265)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1081)
 at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8977) java.util.ConcurrentModificationException in java.util.HashMap$HashIterator.nextEntry

2015-05-07 Thread Andrew Grieve (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14533008#comment-14533008
 ] 

Andrew Grieve commented on CB-8977:
---

Stack looks like what was fixed in CB-8031, but that should be in 3.7.1...

 java.util.ConcurrentModificationException in 
 java.util.HashMap$HashIterator.nextEntry
 -

 Key: CB-8977
 URL: https://issues.apache.org/jira/browse/CB-8977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.7.1
 Environment: Samsung Galaxy S4 on Android 4.4
Reporter: Hirbod
Assignee: Joe Bowser

 I've received two crashreports. I think they are related to cordova and some 
 of the plugins. The plugins are all up-to-date. I'm using CLI 5.0.0 but still 
 on Android-JS 3.7.1 (can't upgrade right know)
 I've upgrade all the plugins from the new npm-repo, I don't know if this is 
 related, but before upgrading the plugins, everything worked well.
 Here is the crash report:
 java.util.ConcurrentModificationException
 at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
 at java.util.HashMap$ValueIterator.next(HashMap.java:838)
 at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
 at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:515)
 at org.apache.cordova.splashscreen.SplashScreen$1.run(SplashScreen.java:128)
 at android.os.Handler.handleCallback(Handler.java:733)
 at android.os.Handler.dispatchMessage(Handler.java:95)
 at android.os.Looper.loop(Looper.java:157)
 at android.app.ActivityThread.main(ActivityThread.java:5356)
 at java.lang.reflect.Method.invokeNative(Native Method)
 at java.lang.reflect.Method.invoke(Method.java:515)
 at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1265)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1081)
 at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org