From c0b759b71d115bf36b4abe487cd29180296b029c Mon Sep 17 00:00:00 2001 From: Ben McIlwain Date: Tue, 8 Oct 2019 13:15:55 -0400 Subject: [PATCH] Make it clear that registered domain lists are also exported to Drive (#304) * Make it clear that registered domain lists are also exported to Drive --- .../google/registry/env/production/default/WEB-INF/cron.xml | 2 +- .../java/google/registry/env/sandbox/default/WEB-INF/cron.xml | 2 +- .../java/google/registry/export/ExportDomainListsAction.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml b/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml index f55c5611a..e7bf1ddfd 100644 --- a/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml +++ b/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml @@ -144,7 +144,7 @@ - This job exports lists of all active domain names to Google Cloud Storage. + This job exports lists of all active domain names to Google Drive and Google Cloud Storage. every 12 hours synchronized backend diff --git a/core/src/main/java/google/registry/env/sandbox/default/WEB-INF/cron.xml b/core/src/main/java/google/registry/env/sandbox/default/WEB-INF/cron.xml index b1e39d942..eac8782d3 100644 --- a/core/src/main/java/google/registry/env/sandbox/default/WEB-INF/cron.xml +++ b/core/src/main/java/google/registry/env/sandbox/default/WEB-INF/cron.xml @@ -112,7 +112,7 @@ - This job exports lists of all active domain names to Google Cloud Storage. + This job exports lists of all active domain names to Google Drive and Google Cloud Storage. every 12 hours synchronized backend diff --git a/core/src/main/java/google/registry/export/ExportDomainListsAction.java b/core/src/main/java/google/registry/export/ExportDomainListsAction.java index 0b8d3e70a..f337cf575 100644 --- a/core/src/main/java/google/registry/export/ExportDomainListsAction.java +++ b/core/src/main/java/google/registry/export/ExportDomainListsAction.java @@ -56,7 +56,7 @@ import javax.inject.Inject; import org.joda.time.DateTime; /** - * A mapreduce that exports the list of active domains on all real TLDs to Google Cloud Storage. + * A mapreduce that exports the list of active domains on all real TLDs to Google Drive and GCS. * *

Each TLD's active domain names are exported as a newline-delimited flat text file with the * name TLD.txt into the domain-lists bucket. Note that this overwrites the files in place.