Commit cd23b85baa056558dc97b6fba8b617e623ece220
1 parent
a3206358
Bump hsqldb version to 2.6.1 to fix sql timeout issues
Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -314,7 +314,7 @@ public abstract class BaseController { |
314 | 314 | } else if (exception instanceof MessagingException) { |
315 | 315 | return new ThingsboardException("Unable to send mail: " + exception.getMessage(), ThingsboardErrorCode.GENERAL); |
316 | 316 | } else { |
317 | - return new ThingsboardException(exception.getMessage(), ThingsboardErrorCode.GENERAL); | |
317 | + return new ThingsboardException(exception.getMessage(), exception, ThingsboardErrorCode.GENERAL); | |
318 | 318 | } |
319 | 319 | } |
320 | 320 | ... | ... |
... | ... | @@ -121,7 +121,7 @@ |
121 | 121 | <awaitility.version>4.1.0</awaitility.version> |
122 | 122 | <cassandra-unit.version>4.3.1.0</cassandra-unit.version> |
123 | 123 | <dbunit.version>2.7.2</dbunit.version> |
124 | - <hsqldb.version>2.6.0</hsqldb.version> | |
124 | + <hsqldb.version>2.6.1</hsqldb.version> | |
125 | 125 | <java-websocket.version>1.5.2</java-websocket.version> |
126 | 126 | <jupiter.version>5.6.3</jupiter.version> <!-- keep the same version as spring-boot-starter-test depend on jupiter--> |
127 | 127 | <json-path.version>2.6.0</json-path.version> | ... | ... |