Skip to content

Commit

Permalink
fix service-discovery tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenlj committed Mar 20, 2024
1 parent a1b357a commit 05a9cd0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
public class Application {
public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class,args);
System.out.println("dubbo service started");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class,args);
System.out.println("dubbo service started");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class,args);
System.out.println("dubbo service started");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
public class Application implements CommandLineRunner {
public static void main(String[] args) {
SpringApplication.run(Application.class,args);
System.out.println("dubbo service started");
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
public class Application {
public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class,args);
System.out.println("dubbo service started");
}
}

0 comments on commit 05a9cd0

Please sign in to comment.