Skip to content

Commit

Permalink
fix: add missing exception cause in createSecretManagerClient (#1923)
Browse files Browse the repository at this point in the history
  • Loading branch information
meltsufin authored Jul 31, 2023
1 parent f4ff7f1 commit 154cbe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static synchronized SecretManagerServiceClient createSecretManagerClient(
return secretManagerServiceClient;
} catch (IOException e) {
throw new RuntimeException(
"Failed to create the Secret Manager Client for ConfigData loading.");
"Failed to create the Secret Manager Client for ConfigData loading.", e);
}
}

Expand Down

0 comments on commit 154cbe5

Please sign in to comment.