Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/4.1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaMaciaszek committed Sep 6, 2024
2 parents 7010dfb + a0329a8 commit 102b173
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/modules/ROOT/pages/spring-cloud-netflix.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ public class Application {
}
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
SpringApplication.run(CustomerServiceTestApplication.class, args);
}
}
----
Expand Down Expand Up @@ -411,8 +412,9 @@ The following example shows a minimal Eureka server:
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
SpringApplication.run(CustomerServiceTestApplication.class, args);
}
}
----
Expand Down

0 comments on commit 102b173

Please sign in to comment.