1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-19 15:28:06 +02:00

Remove commented out code

This commit is contained in:
Julian König 2024-06-11 16:10:23 +01:00
parent 1e0aa01714
commit 387b457e7f
No known key found for this signature in database
GPG key ID: 71CF24CFE750D6EC

View file

@ -17,10 +17,6 @@ export async function setupRedis(): Promise<RedisClient> {
const redisConnectionString = `redis://localhost:${redisPort}`
const client = await connectToRedis(redisConnectionString)
// const testContainersRedis = await import("@testcontainers/redis")
// const container = await new testContainersRedis.RedisContainer().withReuse().start()
// const client = await connectToRedis(container.getConnectionUrl())
process.on("SIGINT", async () => {
await client.quit()
process.exit()