File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
samples/snippets/src/main/java/com/example/spanner Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ static void copyBackup(
80
80
} catch (InterruptedException e ) {
81
81
throw SpannerExceptionFactory .propagateInterrupt (e );
82
82
}
83
- // Reload the metadata of the backup from the server.
83
+ // Load the metadata of the new backup from the server.
84
84
destinationBackup = destinationBackup .reload ();
85
85
System .out .println (
86
86
String .format (
Original file line number Diff line number Diff line change @@ -1696,7 +1696,7 @@ static void listBackupOperations(
1696
1696
+ "google.spanner.admin.database.v1.CopyBackupMetadata) "
1697
1697
+ "AND (metadata.source_backup:%s)" ,
1698
1698
backupId .getName ());
1699
- Page <Operation > copyBackupOperations = instance .listBackupOperations (Options .filter (filter ));
1699
+ Page <Operation > copyBackupOperations = instance .listBackupOperations (Options .filter (filter ));
1700
1700
System .out .println ("Copy Backup Operations:" );
1701
1701
for (Operation op : copyBackupOperations .iterateAll ()) {
1702
1702
try {
You can’t perform that action at this time.
0 commit comments