Merge pull request #35031 from eddumelendez

* pr/35031:
  Add missing containers configuration reference to code snippet

Closes gh-35031
This commit is contained in:
Stephane Nicoll 2023-04-17 15:09:33 +02:00
commit 8ba7e2d020
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import org.springframework.boot.SpringApplication;
public class TestMyApplication {
public static void main(String[] args) {
SpringApplication.from(MyApplication::main).run(args);
SpringApplication.from(MyApplication::main).with(MyContainersConfiguration.class).run(args);
}
}