We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00a4b4e commit 044c9c7Copy full SHA for 044c9c7
1 file changed
infra/bigquery-export/reports.js
@@ -6,7 +6,6 @@ export class ReportsExporter {
6
constructor () {
7
this.bigquery = new BigQueryExport()
8
this.storage = new StorageExport()
9
- this.storagePath = 'reports/dev/' // TODO change to prod
10
}
11
12
// Export timeseries reports
@@ -42,6 +41,8 @@ WHERE date = '${date}'
42
41
return
43
44
+ this.storagePath = 'reports/' + exportConfig.environment !== 'prod' ? 'dev/' : ''
45
+
46
if (exportConfig.lense && exportConfig.lense !== 'all') {
47
this.storagePath = this.storagePath + `${exportConfig.lense}/`
48
0 commit comments