We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8781eaa commit ef695f4Copy full SHA for ef695f4
1 file changed
agent_api/src/test/java/wrappers/HttpURLConnectionTest.java
@@ -3,6 +3,7 @@
3
import dev.aikido.agent_api.context.Context;
4
import dev.aikido.agent_api.storage.Hostnames;
5
import dev.aikido.agent_api.storage.HostnamesStore;
6
+import dev.aikido.agent_api.storage.PendingHostnamesStore;
7
import dev.aikido.agent_api.storage.ServiceConfigStore;
8
import org.junit.jupiter.api.AfterEach;
9
import org.junit.jupiter.api.BeforeEach;
@@ -25,12 +26,14 @@ public class HttpURLConnectionTest {
25
26
void cleanup() {
27
Context.set(null);
28
HostnamesStore.clear();
29
+ PendingHostnamesStore.clear();
30
}
31
32
@BeforeEach
33
void beforeEach() {
34
cleanup();
35
ServiceConfigStore.updateBlocking(true);
36
37
38
39
private void setContextAndLifecycle(String url) {
0 commit comments