We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55c49e commit f033f82Copy full SHA for f033f82
internal-packages/testcontainers/src/utils.ts
@@ -87,8 +87,14 @@ async function verifyRedisConnection(container: StartedRedisContainer) {
87
},
88
});
89
90
+ const containerMetadata = {
91
+ containerId: container.getId().slice(0, 12),
92
+ containerName: container.getName(),
93
+ containerNetworkNames: container.getNetworkNames(),
94
+ };
95
+
96
redis.on("error", (error) => {
- // swallow the error
97
+ console.log("verifyRedisConnection error", error, containerMetadata);
98
99
100
try {
0 commit comments