We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e5f99 commit 0ce6216Copy full SHA for 0ce6216
spring-integration-file/src/main/java/org/springframework/integration/file/FileReadingMessageSource.java
@@ -297,7 +297,7 @@ public String getComponentType() {
297
public void start() {
298
if (!this.running.getAndSet(true)) {
299
if (!this.directory.exists() && this.autoCreateDirectory && !this.directory.mkdirs()) {
300
- throw new IllegalStateException("Cannot create directory or ita parents: " + this.directory);
+ throw new IllegalStateException("Cannot create directory or its parents: " + this.directory);
301
}
302
Assert.isTrue(this.directory.exists(),
303
() -> "Source directory [" + this.directory + "] does not exist.");
0 commit comments