-
Notifications
You must be signed in to change notification settings - Fork 48
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
ConcurrentModificationException in ReportingServiceManager#downloadFileAsync #164
Comments
hi, thanks for reaching out. May I know what is the repro rate of the issue from your side? Seems to me create a new ReportServiceManager instance for each call is not a good practice. Did you try reuse a single ReportServiceManager? |
I just got this error once. I will try to reuse the |
Another one, this time in the BulkServiceManager:
|
For me this looks like a concurrency issue in the service managers: The only suspicious location I found, was the I provided #174 to fix this issue. |
Recently we got a
ConcurrentModificationException
in theReportingServiceManager
.IMO that cannot be caused by our code, because we use a new
ReportingServiceManager
each time.Maybe there is a problem in JAXB or CXF. Currently, we are using
org.glassfish.jaxb
4.0.3 andorg.apache.cxf
4.0.2.Or the
ReportingServiceManager
has a concurrency issue.Our code:
Stacktrace:
The text was updated successfully, but these errors were encountered: