Skip to content

Commit 64f35af

Browse files
committed
fix was ignored
1 parent 0fa209b commit 64f35af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/job/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ def get_source(self):
210210
repo = self.job['repo']
211211
clone_url = repo['clone_url']
212212
branch = repo.get('branch', None)
213-
full_history = repo.get('full_history', False)
214213
ref = repo.get('ref', None)
215214

216215
definition = self.job['definition']
@@ -221,6 +220,7 @@ def get_source(self):
221220
def_repo = definition.get('repository', {})
222221
repo_clone = def_repo.get('clone', True)
223222
repo_submodules = def_repo.get('submodules', True)
223+
full_history = def_repo.get('full_history', False)
224224

225225
commit = repo['commit']
226226

0 commit comments

Comments
 (0)