mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 08:57:12 +02:00
Create MR for backfilling billing AUTO_RENEW flag
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=120261970
This commit is contained in:
parent
6f72af2ba6
commit
67a604654c
2 changed files with 8 additions and 0 deletions
|
@ -94,6 +94,12 @@
|
||||||
<url-pattern>/_dr/task/countRecurringBillingEvents</url-pattern>
|
<url-pattern>/_dr/task/countRecurringBillingEvents</url-pattern>
|
||||||
</servlet-mapping>
|
</servlet-mapping>
|
||||||
|
|
||||||
|
<!-- Mapreduce to backfill new autorenew flag on recurring billing events. -->
|
||||||
|
<servlet-mapping>
|
||||||
|
<servlet-name>tools-servlet</servlet-name>
|
||||||
|
<url-pattern>/_dr/task/backfillAutorenewBillingFlag</url-pattern>
|
||||||
|
</servlet-mapping>
|
||||||
|
|
||||||
<!-- This path serves up the App Engine results page for mapreduce runs. -->
|
<!-- This path serves up the App Engine results page for mapreduce runs. -->
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>mapreduce</servlet-name>
|
<servlet-name>mapreduce</servlet-name>
|
||||||
|
|
|
@ -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.ToolsServerModule;
|
||||||
import com.google.domain.registry.tools.server.UpdatePremiumListAction;
|
import com.google.domain.registry.tools.server.UpdatePremiumListAction;
|
||||||
import com.google.domain.registry.tools.server.VerifyOteAction;
|
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 com.google.domain.registry.tools.server.javascrap.CountRecurringBillingEventsAction;
|
||||||
|
|
||||||
import dagger.Subcomponent;
|
import dagger.Subcomponent;
|
||||||
|
@ -51,6 +52,7 @@ import dagger.Subcomponent;
|
||||||
ToolsServerModule.class,
|
ToolsServerModule.class,
|
||||||
})
|
})
|
||||||
interface ToolsRequestComponent {
|
interface ToolsRequestComponent {
|
||||||
|
BackfillAutorenewBillingFlagAction backfillAutorenewBillingFlagAction();
|
||||||
CountRecurringBillingEventsAction countRecurringBillingEventsAction();
|
CountRecurringBillingEventsAction countRecurringBillingEventsAction();
|
||||||
CreateGroupsAction createGroupsAction();
|
CreateGroupsAction createGroupsAction();
|
||||||
CreatePremiumListAction createPremiumListAction();
|
CreatePremiumListAction createPremiumListAction();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue