in FlywayLambdaService/src/main/java/com/geekoosh/lambda/s3/S3Service.java [50:60]
public static void waitForCompletion(Transfer xfer) throws MigrationFilesException {
try {
xfer.waitForCompletion();
} catch (AmazonServiceException e) {
throw new MigrationFilesException("Amazon service error", e);
} catch (AmazonClientException e) {
throw new MigrationFilesException("Amazon client error", e);
} catch (InterruptedException e) {
throw new MigrationFilesException("Transfer interrupted", e);
}
}