mirror of
https://github.com/google/nomulus.git
synced 2025-07-26 04:28:34 +02:00
Change shouldPublish in GenerateInvoicesAction to default to false (#1640)
This commit is contained in:
parent
2410a114a3
commit
dcaae78657
2 changed files with 2 additions and 2 deletions
|
@ -688,7 +688,7 @@ public final class RegistryConfig {
|
||||||
@Provides
|
@Provides
|
||||||
@Config("defaultShouldPublishInvoices")
|
@Config("defaultShouldPublishInvoices")
|
||||||
public static boolean provideDefaultShouldPublishInvoices() {
|
public static boolean provideDefaultShouldPublishInvoices() {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -255,7 +255,7 @@
|
||||||
</cron>
|
</cron>
|
||||||
|
|
||||||
<cron>
|
<cron>
|
||||||
<url><![CDATA[/_dr/cron/fanout?queue=retryable-cron-tasks&endpoint=/_dr/task/generateInvoices&runInEmpty]]></url>
|
<url><![CDATA[/_dr/cron/fanout?queue=retryable-cron-tasks&endpoint=/_dr/task/generateInvoices?shouldPublish=true&runInEmpty]]></url>
|
||||||
<description>
|
<description>
|
||||||
Starts the beam/invoicing/InvoicingPipeline Dataflow template, which creates the overall invoice and
|
Starts the beam/invoicing/InvoicingPipeline Dataflow template, which creates the overall invoice and
|
||||||
detail report CSVs for last month, storing them in gs://[PROJECT-ID]-billing/invoices/yyyy-MM.
|
detail report CSVs for last month, storing them in gs://[PROJECT-ID]-billing/invoices/yyyy-MM.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue