From 4213e9246ce684fb12e18778826033dde2fbe2cc Mon Sep 17 00:00:00 2001 From: weiminyu Date: Fri, 25 Jan 2019 10:54:49 -0800 Subject: [PATCH] Update the latest_datastore_export view in Bigquery This view used to point to the latest datastore backup using the deprecated export mechanism, which has been disabled. We will point this view to the new backups. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=230930872 --- java/google/registry/export/UploadDatastoreBackupAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/export/UploadDatastoreBackupAction.java b/java/google/registry/export/UploadDatastoreBackupAction.java index 474cab2d5..78a3f659b 100644 --- a/java/google/registry/export/UploadDatastoreBackupAction.java +++ b/java/google/registry/export/UploadDatastoreBackupAction.java @@ -66,7 +66,7 @@ public class UploadDatastoreBackupAction implements Runnable { /** Servlet-specific details needed for enqueuing tasks against itself. */ static final String QUEUE = "export-snapshot"; // See queue.xml. - static final String LATEST_BACKUP_VIEW_NAME = "latest_datastore_backup"; + static final String LATEST_BACKUP_VIEW_NAME = "latest_datastore_export"; static final String PATH = "/_dr/task/uploadDatastoreBackup"; // See web.xml.