diff --git a/common/testcontainers/testcontainers.go b/common/testcontainers/testcontainers.go index 327354d1f3..83da6af599 100644 --- a/common/testcontainers/testcontainers.go +++ b/common/testcontainers/testcontainers.go @@ -31,11 +31,6 @@ type TestcontainerApps struct { // NewTestcontainerApps returns new instance of TestcontainerApps struct func NewTestcontainerApps() *TestcontainerApps { timestamp := time.Now().Nanosecond() - // In order to solve the problem of "creating reaper failed: failed to create container" - // refer to https://github.com/testcontainers/testcontainers-go/issues/2172 - if err := os.Setenv("TESTCONTAINERS_RYUK_DISABLED", "true"); err != nil { - panic("set env failed: " + err.Error()) - } return &TestcontainerApps{ Timestamp: timestamp, }