Skip to content

Commit

Permalink
docs: add missing 's' in fully qualified name in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite committed Sep 18, 2023
1 parent fdf679e commit 54182d0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,8 @@ public DatabaseName getDatabaseName(String database) {
throw SpannerExceptionFactory.newSpannerException(
ErrorCode.FAILED_PRECONDITION,
"The database name does not include an instance ID, and there is no default instance ID in the command line arguments of PGAdapter. "
+ "Either start PGAdapter with the -i <instance-id> command line argument, or specify the database as a fully qualified database name in the format 'projects/my-project/instances/my-instance/database/my-database'.");
+ "Either start PGAdapter with the -i <instance-id> command line argument, or specify the database as a fully qualified database "
+ "name in the format 'projects/my-project/instances/my-instance/databases/my-database'.");
}
databaseName =
DatabaseName.newBuilder()
Expand Down

0 comments on commit 54182d0

Please sign in to comment.