Merge pull request #27781 from izeye

* gh-27781:
  Fix typo in action for bean currently in creation failure analysis

Closes gh-27781
This commit is contained in:
Andy Wilkinson
2021-08-23 13:37:59 +01:00

View File

@@ -44,7 +44,7 @@ class BeanCurrentlyInCreationFailureAnalyzer extends AbstractFailureAnalyzer<Bea
return new FailureAnalysis(buildMessage(dependencyCycle),
"Relying upon circular references is discouraged and they are prohibited by default. "
+ "Update your application to remove the dependency cycle between beans. "
+ "As a last resort, it may be possible to break the cycle automatically be setting "
+ "As a last resort, it may be possible to break the cycle automatically by setting "
+ "spring.main.allow-circular-references to true if you have not already done so.",
cause);
}