Skip to content

Commit ce437c2

Browse files
Use ports in endpoints to fix the tests
Signed-off-by: artur-ciocanu <artur.ciocanu@gmail.com>
1 parent fd621f2 commit ce437c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dapr-spring/dapr-spring-boot-autoconfigure/src/main/java/io/dapr/spring/boot/autoconfigure/client/DaprClientProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
@ConfigurationProperties(prefix = "dapr.client")
1919
public class DaprClientProperties {
20-
private String httpEndpoint = "http://localhost";
21-
private String grpcEndpoint = "localhost";
20+
private String httpEndpoint = "http://localhost:3500";
21+
private String grpcEndpoint = "localhost:50001";
2222
private Integer httpPort = 3500;
2323
private Integer grpcPort = 50001;
2424
private String apiToken;

0 commit comments

Comments
 (0)