From 0b8e7498e0326c4e6a6cd8e6838cdda311f694fa Mon Sep 17 00:00:00 2001 From: larryruili Date: Fri, 3 Aug 2018 07:49:33 -0700 Subject: [PATCH] Re-enable automatic invoice publish All the pipeline-crashing problems should be fixed now, so we should have no problem re-automating the invoice publish. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=207265990 --- java/google/registry/config/RegistryConfig.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/java/google/registry/config/RegistryConfig.java b/java/google/registry/config/RegistryConfig.java index ea84636da..b089d1bda 100644 --- a/java/google/registry/config/RegistryConfig.java +++ b/java/google/registry/config/RegistryConfig.java @@ -620,8 +620,7 @@ public final class RegistryConfig { @Provides @Config("defaultShouldPublishInvoices") public static boolean provideDefaultShouldPublishInvoices() { - // TODO(b/78278360): Make the default 'true' once we're done with SUNRISE. - return false; + return true; } /**