Merge branch '1.3.x
This commit is contained in:
@@ -252,6 +252,7 @@ public class RandomAccessDataFile implements RandomAccessData {
|
||||
: file);
|
||||
}
|
||||
catch (InterruptedException ex) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new IOException(ex);
|
||||
}
|
||||
}
|
||||
@@ -276,6 +277,7 @@ public class RandomAccessDataFile implements RandomAccessData {
|
||||
}
|
||||
}
|
||||
catch (InterruptedException ex) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new IOException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -167,6 +167,7 @@ public class StartMojo extends AbstractRunMojo {
|
||||
this.lock.wait(wait);
|
||||
}
|
||||
catch (InterruptedException ex) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new IllegalStateException(
|
||||
"Interrupted while waiting for Spring Boot app to start.");
|
||||
}
|
||||
@@ -275,6 +276,7 @@ public class StartMojo extends AbstractRunMojo {
|
||||
this.lock.wait(wait);
|
||||
}
|
||||
catch (InterruptedException ex) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new IllegalStateException(
|
||||
"Interrupted while waiting for Spring Boot app to start.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user