We're using SmartGWT Enterprise 13.0-p20230212.
When we try to upgrade to version 13.0-p20230818 (also tried 13.0-p20230927), with no other changes, we're now getting an exception during an import from the BatchUploader. I've attached the stack trace as it's pretty big. We're also getting a lot of these warnings for many different classes:
For the code that processes the "add" form the BatchUploader we have written custom DMI that goes:
This is done because our import takes awhile to process, the work is done in an async process.
We've had this code like this running great for years, but now with the version upgrade the response from the queue of "add" requests is not working. Has something changed in a recently that would make this scenario not work?
When we try to upgrade to version 13.0-p20230818 (also tried 13.0-p20230927), with no other changes, we're now getting an exception during an import from the BatchUploader. I've attached the stack trace as it's pretty big. We're also getting a lot of these warnings for many different classes:
Code:
WARN com.isomorphic.js.JSTranslater:227 - - org.eclipse.jetty.server.Server contains a (potentially indirect) looping reference to itself. Returning null for recursed value.
Code:
public DSResponse executeAdd(final DSRequest req) throws Exception { final int size = req.getRPCManager().getRequests().size(); final Map<String, Object> job = getJobSQLService().addJob(OpeningConstants.IMPORT_OPENINGS, BatchJobStatusConstants.IN_PROGRESS, size, 0, 0, 0, null); final long jobId = (long) job.get(DSConst.JobSQL.JOB_ID); final DSResponse res = new DSResponse(SmartGWTStatusCode.STATUS_SUCCESS); res.setData(job); /* Skipping all other request of queue. Process first request from queue and extract all the request from RPCManager. */ req.getRPCManager().skipRemainingQueue(); getImportOpeningService().startImport(req, jobId); // Async method to continue processing import return res; }
We've had this code like this running great for years, but now with the version upgrade the response from the queue of "add" requests is not working. Has something changed in a recently that would make this scenario not work?
Comment