-
-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ArrayStoreException using Google's google-api-client and autoparse gems #3516
Comments
Just to throw out things I've tried to narrow down the example code, that didn't work: I got things down to just the code interacting with the autoparse gem, so that the example code didn't depend on google-api-client, but the code ran without any exceptions. I figured I might have missed something, so I took a look at that huge block of JSON data that gets loaded to make |
sounds like this is no longer an issue - have tried reproducing on 9.0.5.0 with the same gem versions.
|
I'm moving an app from jruby 1.7.21 to 9.0.4.0, and I'm getting
Java::JavaLang::ArrayStoreException
using Google's google-api-client gem to manage Google Calendars. The error gets raised in code from the autoparse gem. The code below will generate the exception every time, on the first run. However if I run it with the-J-Djruby.compile.mode=OFF
flag, it works just fine (it also worked just fine in 1.7.21 even without that flag).(if you try to reproduce please note I'm using version 0.6.4 of the google-api-client gem and the latest version of the autoparse gem, 0.3.3)
Here's the stack trace generated:
If I comment out this line in the autoparse gem, the code above runs without any error (this particular code example never takes that
else
branch), so maybe investigating why that would be would be a good starting point?Spent all damn day trying to boil this down to a simpler example, but no luck, sorry!
The text was updated successfully, but these errors were encountered: