mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 20:18:34 +02:00
Change shouldPublish in GenerateInvoicesAction to default to false (#1640)
This commit is contained in:
parent
64fba55f06
commit
123d6359dc
2 changed files with 2 additions and 2 deletions
|
@ -688,7 +688,7 @@ public final class RegistryConfig {
|
|||
@Provides
|
||||
@Config("defaultShouldPublishInvoices")
|
||||
public static boolean provideDefaultShouldPublishInvoices() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -255,7 +255,7 @@
|
|||
</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>
|
||||
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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue