Skip to content

Commit

Permalink
Don't reuse port for couchbase tests (#12278)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Sep 18, 2024
1 parent 888fef2 commit eb8defe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public abstract class AbstractCouchbaseTest {
protected static final String USERNAME = "Administrator";
protected static final String PASSWORD = "password";

private static final int port = PortUtils.findOpenPort();
protected static final BucketSettings bucketCouchbase =
DefaultBucketSettings.builder()
.enableFlush(true)
Expand All @@ -56,6 +55,7 @@ public abstract class AbstractCouchbaseTest {
.type(BucketType.MEMCACHED)
.quota(100)
.build();
private final int port = PortUtils.findOpenPort();
private CouchbaseMock mock;

@BeforeAll
Expand Down

0 comments on commit eb8defe

Please sign in to comment.