Skip to content

Commit ef01fc5

Browse files
authored
Merge pull request doccano#320 from CatalystCode/bugfix/google-analytics
Bugfix/Remove Google Analytics from Azure deployment
2 parents e39b3a1 + 33f3f17 commit ef01fc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/app/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
# on the import phase
270270
IMPORT_BATCH_SIZE = env.int('IMPORT_BATCH_SIZE', 500)
271271

272-
GOOGLE_TRACKING_ID = env('GOOGLE_TRACKING_ID', 'UA-125643874-2')
272+
GOOGLE_TRACKING_ID = env('GOOGLE_TRACKING_ID', 'UA-125643874-2').strip()
273273

274274
AZURE_APPINSIGHTS_IKEY = env('AZURE_APPINSIGHTS_IKEY', None)
275275
APPLICATION_INSIGHTS = {

azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
},
302302
{
303303
"name": "GOOGLE_TRACKING_ID",
304-
"value": ""
304+
"value": " "
305305
},
306306
{
307307
"name": "DEBUG",

0 commit comments

Comments
 (0)