From 7d03609443c81852ee9b808b17443d9bd999ffe2 Mon Sep 17 00:00:00 2001 From: Erik Swenson Date: Tue, 19 Dec 2023 10:33:43 -0700 Subject: [PATCH] add 8.11 and 8.12 versions and remove debug logging --- database/rqlite/rqlite_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database/rqlite/rqlite_test.go b/database/rqlite/rqlite_test.go index 0372a117d..c19f7476b 100644 --- a/database/rqlite/rqlite_test.go +++ b/database/rqlite/rqlite_test.go @@ -28,6 +28,8 @@ var opts = dktest.Options{ var specs = []dktesting.ContainerSpec{ {ImageName: "rqlite/rqlite:7.21.4", Options: opts}, {ImageName: "rqlite/rqlite:8.0.6", Options: opts}, + {ImageName: "rqlite/rqlite:8.11.1", Options: opts}, + {ImageName: "rqlite/rqlite:8.12.3", Options: opts}, } func isReady(ctx context.Context, c dktest.ContainerInfo) bool { @@ -68,7 +70,6 @@ func isReady(ctx context.Context, c dktest.ContainerInfo) bool { return false } - fmt.Printf("reporting ready status %+v\n", readyResp) return readyResp.Store.Ready }