We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74f824 commit 09d6a86Copy full SHA for 09d6a86
2 files changed
codespeed/settings.py
@@ -6,7 +6,7 @@
6
7
DEF_ENVIRONMENT = None #Name of the environment which should be selected as default
8
9
-DEF_BRANCH = "default" # Defines the default branch to be used.
+DEF_BRANCH = "master" # Defines the default branch to be used.
10
# In git projects, this branch is usually be calles
11
# "master"
12
codespeed/views.py
@@ -394,7 +394,7 @@ def timeline(request):
394
branch_list.sort()
395
396
defaultbranch = ""
397
- if "default" in branch_list:
+ if settings.DEF_BRANCH in branch_list:
398
defaultbranch = settings.DEF_BRANCH
399
if data.get('bran') in branch_list:
400
defaultbranch = data.get('bran')
0 commit comments