Skip to content

Commit

Permalink
fix: suggested review changes
Browse files Browse the repository at this point in the history
- added version for ExceptionHandlingAsyncTaskExecutor file
- removed unwanted character
  • Loading branch information
DishaAnand committed Nov 22, 2023
1 parent 4b81344 commit e70aa68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void execute(Runnable task) {

/** {@inheritDoc} */
@Override
@Deprecated(since = "version", forRemoval = true)
@Deprecated(since = "7.8.0", forRemoval = true)
public void execute(Runnable task, long startTimeout) {
executor.execute(createWrappedRunnable(task), startTimeout);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class AsyncSpringLiquibase extends DataSourceClosingSpringLiquibase {
/** Constant <code>STARTED_MESSAGE="Liquibase has updated your database in "{trunked}</code> */
public static final String STARTED_MESSAGE = "Liquibase has updated your database in {} ms";
/** Constant <code>EXCEPTION_MESSAGE="Liquibase could not start correctly, yo"{trunked}</code> */
public static final String EXCEPTION_MESSAGE = "Liquibase could not start correctly, your database is NOT ready: " + "{}";
public static final String EXCEPTION_MESSAGE = "Liquibase could not start correctly, your database is NOT ready: {}";

/** Constant <code>SLOWNESS_THRESHOLD=5</code> */
public static final long SLOWNESS_THRESHOLD = 5; // seconds
Expand Down

0 comments on commit e70aa68

Please sign in to comment.