-
Bug
-
Resolution: Done
-
Critical
-
None
-
None
-
False
-
False
-
Undefined
-
There's currently an issue with io.debezium.testing.testcontainers.DebeziumContainer#executeGETRequestSuccessfully.
The sub-call to executeGETRequest is executed with a try-with-resources block, which will auto-close the response when the try block is left. The executeGETRequestSuccessfully method returns the response which will be used in calling methods, which fails because the underlying response is already closed by the try-with-resources block and access to the response is not possible anymore.