File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
modules/couchbase/src/main/java/org/testcontainers/couchbase Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -341,6 +341,13 @@ private void exposePorts() {
341341 }
342342 }
343343
344+ @ Override
345+ protected void containerIsStarting (InspectContainerResponse containerInfo , boolean reused ) {
346+ if (!reused ) {
347+ containerIsStarting (containerInfo );
348+ }
349+ }
350+
344351 @ Override
345352 protected void containerIsStarting (final InspectContainerResponse containerInfo ) {
346353 logger ().debug ("Couchbase container is starting, performing configuration." );
@@ -359,6 +366,13 @@ protected void containerIsStarting(final InspectContainerResponse containerInfo)
359366 }
360367 }
361368
369+ @ Override
370+ protected void containerIsStarted (InspectContainerResponse containerInfo , boolean reused ) {
371+ if (!reused ) {
372+ this .containerIsStarted (containerInfo );
373+ }
374+ }
375+
362376 @ Override
363377 protected void containerIsStarted (InspectContainerResponse containerInfo ) {
364378 timePhase ("createBuckets" , this ::createBuckets );
You can’t perform that action at this time.
0 commit comments