move from localhost to 127.0.0.1 (#213)

This commit is contained in:
Yaron Schneider 2020-02-05 12:13:16 -08:00 committed by GitHub
parent 78b522c9f4
commit 93bb3b55d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 50 additions and 50 deletions

View File

@ -148,7 +148,7 @@ DAPR_GRPC_PORT=5001
Now you can go to your IDE (like IntelliJ, for example) and debug your Java application, using port `3500` to call Dapr while also listening to port `3000` to expose Dapr's callback endpoint.
Calls to Dapr's APIs on `http://localhost:3500/*` should work now and trigger breakpoints in your code.
Calls to Dapr's APIs on `http://127.0.0.1:3500/*` should work now and trigger breakpoints in your code.
**If your application needs to subscribe to topics or register Actors in Dapr, for example, then start debugging your app first and run dapr with dummy command last.**

View File

@ -958,7 +958,7 @@
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="io/dapr/utils/Constants.html#DEFAULT_HOSTNAME">DEFAULT_HOSTNAME</a></code></td>
<td class="colLast"><code>"localhost"</code></td>
<td class="colLast"><code>"127.0.0.1"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="io.dapr.utils.Constants.HEADER_DAPR_REQUEST_ID">

View File

@ -36,7 +36,7 @@ public class DaprHttpClientTest {
public void invokeActorMethod() {
DaprHttp daprHttpMock = mock(DaprHttp.class);
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/actors/DemoActor/1/method/Payment")
.post("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/method/Payment")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);

View File

@ -35,7 +35,7 @@ public class DaprHttpClientTest {
@Test
public void getActorState() {
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/actors/DemoActor/1/state/order")
.get("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/state/order")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);
@ -47,7 +47,7 @@ public class DaprHttpClientTest {
@Test
public void saveActorStateTransactionally() {
mockInterceptor.addRule()
.put("http://localhost:3000/v1.0/actors/DemoActor/1/state")
.put("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/state")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);
@ -59,7 +59,7 @@ public class DaprHttpClientTest {
@Test
public void registerActorReminder() {
mockInterceptor.addRule()
.put("http://localhost:3000/v1.0/actors/DemoActor/1/reminders/reminder")
.put("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/reminders/reminder")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);
@ -71,7 +71,7 @@ public class DaprHttpClientTest {
@Test
public void unregisterActorReminder() {
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/actors/DemoActor/1/reminders/reminder")
.delete("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/reminders/reminder")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);
@ -82,7 +82,7 @@ public class DaprHttpClientTest {
@Test
public void registerActorTimer() {
mockInterceptor.addRule()
.put("http://localhost:3000/v1.0/actors/DemoActor/1/timers/timer")
.put("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/timers/timer")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);
@ -94,7 +94,7 @@ public class DaprHttpClientTest {
@Test
public void unregisterActorTimer() {
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/actors/DemoActor/1/timers/timer")
.delete("http://127.0.0.1:3000/v1.0/actors/DemoActor/1/timers/timer")
.respond(EXPECTED_RESULT);
DaprHttp daprHttp = new DaprHttpProxy(3000, okHttpClient);
DaprHttpClient = new DaprHttpClient(daprHttp);

View File

@ -45,7 +45,7 @@ public class ActorTurnBasedConcurrencyIT extends BaseIT {
@After
public void cleanUpTestCase() {
// Delete the reminder in case the test failed, otherwise it may interfere with future tests since it is persisted.
// It'll have this structure with different values: http://localhost:33997/v1.0/actors/MyActorTest/1/reminders/588e4adc-f902-4596-b12e-3d2955db68b6
// It'll have this structure with different values: http://127.0.0.1:33997/v1.0/actors/MyActorTest/1/reminders/588e4adc-f902-4596-b12e-3d2955db68b6
DaprHttp client = new DaprHttpBuilder().build();
String url = String.format(Constants.ACTOR_REMINDER_RELATIVE_URL_FORMAT, ACTOR_TYPE, ACTOR_ID, REMINDER_NAME);

View File

@ -26,7 +26,7 @@ public class HelloWorldClientIT extends BaseIT {
2000
);
ManagedChannel channel =
ManagedChannelBuilder.forAddress("localhost", daprRun.getGrpcPort()).usePlaintext().build();
ManagedChannelBuilder.forAddress("127.0.0.1", daprRun.getGrpcPort()).usePlaintext().build();
DaprGrpc.DaprBlockingStub client = DaprGrpc.newBlockingStub(channel);
String key = "mykey";

View File

@ -30,7 +30,7 @@ public class HelloWorldGrpcStateService {
// If port string is not valid, it will throw an exception.
int grpcPortInt = Integer.parseInt(grpcPort);
ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", grpcPortInt).usePlaintext().build();
ManagedChannel channel = ManagedChannelBuilder.forAddress("127.0.0.1", grpcPortInt).usePlaintext().build();
DaprBlockingStub client = DaprGrpc.newBlockingStub(channel);
String key = "mykey";

View File

@ -18,7 +18,7 @@ public final class Constants {
/**
* Dapr's default hostname.
*/
public static final String DEFAULT_HOSTNAME = "localhost";
public static final String DEFAULT_HOSTNAME = "127.0.0.1";
/**
* Header used for request id in Dapr.

View File

@ -44,7 +44,7 @@ public class DaprClientHttpTest {
@Test
public void publishEventInvokation() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -56,7 +56,7 @@ public class DaprClientHttpTest {
@Test
public void publishEvent() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -68,7 +68,7 @@ public class DaprClientHttpTest {
@Test(expected = IllegalArgumentException.class)
public void publishEventIfTopicIsNull() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -80,7 +80,7 @@ public class DaprClientHttpTest {
@Test(expected = IllegalArgumentException.class)
public void invokeServiceVerbNull() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -92,7 +92,7 @@ public class DaprClientHttpTest {
@Test
public void invokeServiceIllegalArgumentException() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -118,7 +118,7 @@ public class DaprClientHttpTest {
@Test(expected = IllegalArgumentException.class)
public void invokeServiceMethodNull() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/publish/A")
.post("http://127.0.0.1:3000/v1.0/publish/A")
.respond(EXPECTED_RESULT);
String event = "{ \"message\": \"This is a test\" }";
daprHttp = new DaprHttp(3000, okHttpClient);
@ -130,7 +130,7 @@ public class DaprClientHttpTest {
@Test
public void invokeService() {
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/invoke/41/method/neworder")
.get("http://127.0.0.1:3000/v1.0/invoke/41/method/neworder")
.respond("hello world");
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -142,7 +142,7 @@ public class DaprClientHttpTest {
public void simpleInvokeService() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/invoke/41/method/neworder")
.get("http://127.0.0.1:3000/v1.0/invoke/41/method/neworder")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -154,7 +154,7 @@ public class DaprClientHttpTest {
public void invokeServiceWithMaps() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/invoke/41/method/neworder")
.get("http://127.0.0.1:3000/v1.0/invoke/41/method/neworder")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -167,7 +167,7 @@ public class DaprClientHttpTest {
public void invokeServiceWithOutRequest() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/invoke/41/method/neworder")
.get("http://127.0.0.1:3000/v1.0/invoke/41/method/neworder")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -179,7 +179,7 @@ public class DaprClientHttpTest {
public void invokeServiceWithRequest() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/invoke/41/method/neworder")
.get("http://127.0.0.1:3000/v1.0/invoke/41/method/neworder")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -191,7 +191,7 @@ public class DaprClientHttpTest {
public void invokeBinding() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/bindings/sample-topic")
.post("http://127.0.0.1:3000/v1.0/bindings/sample-topic")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -203,7 +203,7 @@ public class DaprClientHttpTest {
public void invokeBindingNullName() {
Map<String, String> map = new HashMap<>();
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/bindings/sample-topic")
.post("http://127.0.0.1:3000/v1.0/bindings/sample-topic")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -218,7 +218,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValue = new State("value", "key", "etag", stateOptions);
State<String> stateKeyNull = new State("value", null, "etag", stateOptions);
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/state/MyStateStore/key")
.get("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond("\"" + EXPECTED_RESULT + "\"");
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -233,7 +233,7 @@ public class DaprClientHttpTest {
public void getStatesEmptyEtag() {
State<String> stateEmptyEtag = new State("value", "key", "", null);
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/state/MyStateStore/key")
.get("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond("\"" + EXPECTED_RESULT + "\"");
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -245,7 +245,7 @@ public class DaprClientHttpTest {
public void getStatesNullEtag() {
State<String> stateNullEtag = new State("value", "key", null, null);
mockInterceptor.addRule()
.get("http://localhost:3000/v1.0/state/MyStateStore/key")
.get("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond("\"" + EXPECTED_RESULT + "\"");
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -258,7 +258,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValue = new State("value", "key", "etag", null);
List<State<?>> stateKeyValueList = Arrays.asList(stateKeyValue);
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/state/MyStateStore")
.post("http://127.0.0.1:3000/v1.0/state/MyStateStore")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -271,7 +271,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValue = new State("value", "key", "", null);
List<State<?>> stateKeyValueList = new ArrayList();
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/state/MyStateStore")
.post("http://127.0.0.1:3000/v1.0/state/MyStateStore")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -286,7 +286,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValue = new State("value", "key", null, null);
List<State<?>> stateKeyValueList = Arrays.asList(stateKeyValue);
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/state/MyStateStore")
.post("http://127.0.0.1:3000/v1.0/state/MyStateStore")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -299,7 +299,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValue = new State("value", "key", "", null);
List<State<?>> stateKeyValueList = Arrays.asList(stateKeyValue);
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/state/MyStateStore")
.post("http://127.0.0.1:3000/v1.0/state/MyStateStore")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -310,7 +310,7 @@ public class DaprClientHttpTest {
@Test
public void simpleSaveStates() {
mockInterceptor.addRule()
.post("http://localhost:3000/v1.0/state/MyStateStore")
.post("http://127.0.0.1:3000/v1.0/state/MyStateStore")
.respond(EXPECTED_RESULT);
StateOptions stateOptions = mock(StateOptions.class);
daprHttp = new DaprHttp(3000, okHttpClient);
@ -325,7 +325,7 @@ public class DaprClientHttpTest {
StateOptions stateOptions = mock(StateOptions.class);
State<String> stateKeyValue = new State("value", "key", "etag", stateOptions);
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/state/MyStateStore/key")
.delete("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -337,7 +337,7 @@ public class DaprClientHttpTest {
public void deleteStateNullEtag() {
State<String> stateKeyValue = new State("value", "key", null, null);
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/state/MyStateStore/key")
.delete("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -349,7 +349,7 @@ public class DaprClientHttpTest {
public void deleteStateEmptyEtag() {
State<String> stateKeyValue = new State("value", "key", "", null);
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/state/MyStateStore/key")
.delete("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);
@ -362,7 +362,7 @@ public class DaprClientHttpTest {
State<String> stateKeyValueNull = new State("value", null, "etag", null);
State<String> stateKeyValueEmpty = new State("value", "", "etag", null);
mockInterceptor.addRule()
.delete("http://localhost:3000/v1.0/state/MyStateStore/key")
.delete("http://127.0.0.1:3000/v1.0/state/MyStateStore/key")
.respond(EXPECTED_RESULT);
daprHttp = new DaprHttp(3000, okHttpClient);
daprClientHttp = new DaprClientHttp(daprHttp);

View File

@ -42,7 +42,7 @@ public class DaprHttpTest {
headers.put("content-type", "text/html");
headers.put("header1", "value1");
mockInterceptor.addRule()
.post("http://localhost:3500/v1.0/state")
.post("http://127.0.0.1:3500/v1.0/state")
.respond(serializer.serialize(EXPECTED_RESULT));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
Mono<DaprHttp.Response> mono = daprHttp.invokeApi("POST", "v1.0/state", null, (byte[]) null, headers);
@ -54,7 +54,7 @@ public class DaprHttpTest {
@Test
public void invokePostMethod() throws IOException {
mockInterceptor.addRule()
.post("http://localhost:3500/v1.0/state")
.post("http://127.0.0.1:3500/v1.0/state")
.respond(serializer.serialize(EXPECTED_RESULT))
.addHeader("Header", "Value");
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
@ -67,7 +67,7 @@ public class DaprHttpTest {
@Test
public void invokeDeleteMethod() throws IOException {
mockInterceptor.addRule()
.delete("http://localhost:3500/v1.0/state")
.delete("http://127.0.0.1:3500/v1.0/state")
.respond(serializer.serialize(EXPECTED_RESULT));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
Mono<DaprHttp.Response> mono = daprHttp.invokeApi("DELETE", "v1.0/state", null, (String) null, null);
@ -79,7 +79,7 @@ public class DaprHttpTest {
@Test
public void invokeGetMethod() throws IOException {
mockInterceptor.addRule()
.get("http://localhost:3500/v1.0/get")
.get("http://127.0.0.1:3500/v1.0/get")
.respond(serializer.serialize(EXPECTED_RESULT));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
Mono<DaprHttp.Response> mono = daprHttp.invokeApi("GET", "v1.0/get", null, null);
@ -96,7 +96,7 @@ public class DaprHttpTest {
Map<String, String> urlParameters = new HashMap<>();
urlParameters.put("orderId", "41");
mockInterceptor.addRule()
.get("http://localhost:3500/v1.0/state/order?orderId=41")
.get("http://127.0.0.1:3500/v1.0/state/order?orderId=41")
.respond(serializer.serialize(EXPECTED_RESULT));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
Mono<DaprHttp.Response> mono = daprHttp.invokeApi("GET", "v1.0/state/order", urlParameters, headers);
@ -108,7 +108,7 @@ public class DaprHttpTest {
@Test(expected = RuntimeException.class)
public void invokePostMethodRuntime() throws IOException {
mockInterceptor.addRule()
.post("http://localhost:3500/v1.0/state")
.post("http://127.0.0.1:3500/v1.0/state")
.respond(500);
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
Mono<DaprHttp.Response> mono = daprHttp.invokeApi("POST", "v1.0/state", null, null);
@ -120,7 +120,7 @@ public class DaprHttpTest {
@Test(expected = RuntimeException.class)
public void invokePostDaprError() throws IOException {
mockInterceptor.addRule()
.post("http://localhost:3500/v1.0/state")
.post("http://127.0.0.1:3500/v1.0/state")
.respond(500, ResponseBody.create(MediaType.parse("text"),
"{\"errorCode\":null,\"message\":null}"));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
@ -133,7 +133,7 @@ public class DaprHttpTest {
@Test(expected = RuntimeException.class)
public void invokePostMethodUnknownError() throws IOException {
mockInterceptor.addRule()
.post("http://localhost:3500/v1.0/state")
.post("http://127.0.0.1:3500/v1.0/state")
.respond(500, ResponseBody.create(MediaType.parse("application/json"),
"{\"errorCode\":\"null\",\"message\":\"null\"}"));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
@ -169,14 +169,14 @@ public class DaprHttpTest {
String urlDeleteState = Constants.STATE_PATH + "/" + deletedStateKey;
String urlExistingState = Constants.STATE_PATH + "/" + existingState;
mockInterceptor.addRule()
.get("http://localhost:3500/" + urlDeleteState)
.get("http://127.0.0.1:3500/" + urlDeleteState)
.respond(200, ResponseBody.create(MediaType.parse("application/json"),
deletedStateKey));
mockInterceptor.addRule()
.delete("http://localhost:3500/" + urlDeleteState)
.delete("http://127.0.0.1:3500/" + urlDeleteState)
.respond(204);
mockInterceptor.addRule()
.get("http://localhost:3500/" + urlExistingState)
.get("http://127.0.0.1:3500/" + urlExistingState)
.respond(200, ResponseBody.create(MediaType.parse("application/json"),
serializer.serialize(existingState)));
DaprHttp daprHttp = new DaprHttp(3500, okHttpClient);
@ -187,7 +187,7 @@ public class DaprHttpTest {
assertEquals("", serializer.deserialize(responseDeleteKey.block().getBody(), String.class));
mockInterceptor.reset();
mockInterceptor.addRule()
.get("http://localhost:3500/" + urlDeleteState)
.get("http://127.0.0.1:3500/" + urlDeleteState)
.respond(404, ResponseBody.create(MediaType.parse("application/json"),
"{\"errorCode\":\"404\",\"message\":\"State Not Fuund\"}"));
try {