From 67a604654c580b5db8a1b8eb28a153165a27bf3d Mon Sep 17 00:00:00 2001 From: ctingue Date: Tue, 19 Apr 2016 13:16:53 -0700 Subject: [PATCH] Create MR for backfilling billing AUTO_RENEW flag ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=120261970 --- .../google/domain/registry/env/common/tools/WEB-INF/web.xml | 6 ++++++ .../domain/registry/module/tools/ToolsRequestComponent.java | 2 ++ 2 files changed, 8 insertions(+) diff --git a/java/com/google/domain/registry/env/common/tools/WEB-INF/web.xml b/java/com/google/domain/registry/env/common/tools/WEB-INF/web.xml index ae8f36481..3cf00dacb 100644 --- a/java/com/google/domain/registry/env/common/tools/WEB-INF/web.xml +++ b/java/com/google/domain/registry/env/common/tools/WEB-INF/web.xml @@ -94,6 +94,12 @@ /_dr/task/countRecurringBillingEvents + + + tools-servlet + /_dr/task/backfillAutorenewBillingFlag + + mapreduce diff --git a/java/com/google/domain/registry/module/tools/ToolsRequestComponent.java b/java/com/google/domain/registry/module/tools/ToolsRequestComponent.java index 60d63d392..3f2f57a99 100644 --- a/java/com/google/domain/registry/module/tools/ToolsRequestComponent.java +++ b/java/com/google/domain/registry/module/tools/ToolsRequestComponent.java @@ -37,6 +37,7 @@ import com.google.domain.registry.tools.server.ResaveAllEppResourcesAction; import com.google.domain.registry.tools.server.ToolsServerModule; import com.google.domain.registry.tools.server.UpdatePremiumListAction; import com.google.domain.registry.tools.server.VerifyOteAction; +import com.google.domain.registry.tools.server.javascrap.BackfillAutorenewBillingFlagAction; import com.google.domain.registry.tools.server.javascrap.CountRecurringBillingEventsAction; import dagger.Subcomponent; @@ -51,6 +52,7 @@ import dagger.Subcomponent; ToolsServerModule.class, }) interface ToolsRequestComponent { + BackfillAutorenewBillingFlagAction backfillAutorenewBillingFlagAction(); CountRecurringBillingEventsAction countRecurringBillingEventsAction(); CreateGroupsAction createGroupsAction(); CreatePremiumListAction createPremiumListAction();