Skip to content

Commit

Permalink
Merge pull request #44 from msmygit/main
Browse files Browse the repository at this point in the history
Fix for #43 for printing the resuming database name properly
  • Loading branch information
clun authored Feb 27, 2023
2 parents 0480c44 + 0905bbf commit ffa6968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli-native-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
graalvm-version: ['22.1.0','22.3.0']
graalvm-version: ['22.2.0','22.3.1']
jdk-version: ['17']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/dtsx/astra/cli/db/ServiceDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public void resumeDb(String databaseName)
LoggerShell.info("%s '%s' is already active".formatted(DB, databaseName));
case HIBERNATED -> {
resumeDbRequest(db);
LoggerShell.success("Resuming %s '%s' ...".formatted(DB, db));
LoggerShell.success("Resuming %s '%s' ...".formatted(DB, databaseName));
}
case MAINTENANCE,INITIALIZING,PENDING ->
LoggerShell.info("%s '%s' will be available soon");
Expand Down

0 comments on commit ffa6968

Please sign in to comment.