Skip to content

Commit

Permalink
Merge pull request #8 from PhonePe/oss
Browse files Browse the repository at this point in the history
Use specific aerospike test container docker image
  • Loading branch information
MISBMS authored Oct 17, 2024
2 parents 05b9ded + 9e9a338 commit a7fa8f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Distributed Lock Manager (DLM)

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PhonePe_DLM&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PhonePe_DLM)

Locking is a very common expectation in SoA, where a vulnerable entity needs to be protected for a certain duration.
And the definition of vulnerable entity changes from one client to another depending on the use-cases at hand.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
*/
public class DistributedLockWithAerospikeTest {
public static final String AEROSPIKE_HOST = "localhost";
public static final String AEROSPIKE_DOCKER_IMAGE = "aerospike/aerospike-server:latest";
public static final String AEROSPIKE_DOCKER_IMAGE = "aerospike/aerospike-server:6.4.0.23";
public static final String AEROSPIKE_NAMESPACE = "DLM";
public static final int AEROSPIKE_PORT = 3000;
private static final AerospikeContainer AEROSPIKE_DOCKER_CONTAINER;
Expand Down

0 comments on commit a7fa8f1

Please sign in to comment.