Skip to content

Commit

Permalink
Merge pull request #55 from OpenNMS/dependabot/maven/release-2.x/org.…
Browse files Browse the repository at this point in the history
…testcontainers-testcontainers-1.19.5

build(deps-dev): bump org.testcontainers:testcontainers from 1.15.3 to 1.19.5
  • Loading branch information
Benjamin Reed authored Feb 21, 2024
2 parents cfc1ba9 + 8de9f77 commit 62950b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.15.3</version>
<version>1.19.5</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.DockerComposeContainer;
import org.testcontainers.containers.wait.strategy.Wait;
import org.testcontainers.shaded.org.apache.commons.lang.NotImplementedException;

public class CortexTSSIntegrationTest extends AbstractStorageIntegrationTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.opennms.timeseries.cortex;

import org.opennms.integration.api.v1.distributed.KeyValueStore;
import org.testcontainers.shaded.org.apache.commons.lang.NotImplementedException;

import java.util.HashMap;
import java.util.Map;
Expand Down Expand Up @@ -33,12 +32,12 @@ public Optional get(String key, String context) {

@Override
public Optional getIfStale(String key, String context, long timestamp) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
public OptionalLong getLastUpdated(String key, String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
Expand All @@ -48,12 +47,12 @@ public Map enumerateContext(String context) {

@Override
public void delete(String key, String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
public void truncateContext(String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
Expand All @@ -70,17 +69,17 @@ public CompletableFuture<Long> putAsync(String key, Object value, String context

@Override
public CompletableFuture<Optional> getAsync(String key, String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
public CompletableFuture<Optional> getIfStaleAsync(String key, String context, long timestamp) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
public CompletableFuture<OptionalLong> getLastUpdatedAsync(String key, String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
Expand All @@ -95,12 +94,12 @@ public CompletableFuture<Map> enumerateContextAsync(String context) {

@Override
public CompletableFuture<Void> deleteAsync(String key, String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

@Override
public CompletableFuture<Void> truncateContextAsync(String context) {
throw new NotImplementedException();
throw new RuntimeException();
}

}

0 comments on commit 62950b0

Please sign in to comment.