Enterprise edition 14.1-p20251203
We had a bug in one of our production instances where we got a NullPointerException during a datasource operation. It looks like the NullPointer was received from the framework, but there's no stack trace from the logs or anything so it's difficult to diagnose what the issue was.
Here's the log messages we received:
Not really sure where to go from this one, difficult to diagnose these warning messages, they're not giving us much context.
We had a bug in one of our production instances where we got a NullPointerException during a datasource operation. It looks like the NullPointer was received from the framework, but there's no stack trace from the logs or anything so it's difficult to diagnose what the issue was.
Here's the log messages we received:
Code:
2026-01-19 13:06:01.204 WARN com.isomorphic.datasource.DSRequest: - 696e2c37000000005df60369f374bd97 8145044541552649700 - Caught Exception trying to derive requestMaxRows java.lang.NullPointerException
2026-01-19 13:06:01.205 WARN com.isomorphic.sql.SQLTransform: - 696e2c37000000005df60369f374bd97 8145044541552649700 - Crashed trying to getObject for column documentId
2026-01-19 13:06:01.211 WARN com.isomorphic.datasource.DSRequest: - 696e2c37000000005df60369f374bd97 8145044541552649700 - Exception trying to getDataSource() java.lang.NullPointerException
2026-01-19 13:06:01.212 ERROR com.example.server.services.impl.ProposalGeneratorServiceImpl:200 - 696e2c37000000005df60369f374bd97 8145044541552649700 - java.lang.NullPointerException
com.example.exceptionhandling.core.ApplicationException: java.lang.NullPointerException
at com.example.server.services.impl.ProposalGeneratorServiceImpl.saveProposalAfterProposalGeneration(ProposalGeneratorServiceImpl.java:120)
at com.example.server.services.impl.ProposalGeneratorServiceImpl.lambda$generateChangeProposal$0(ProposalGeneratorServiceImpl.java:198)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:545)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:328)
at com.example.server.Config.lambda$taskDecorator$1(Config.java:153)
at java.base/java.lang.VirtualThread.run(VirtualThread.java:456)
Caused by: java.lang.NullPointerException
Comment