diff options
| author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2015-02-07 09:43:20 +0100 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2015-02-07 09:43:20 +0100 |
| commit | 2d48e71fe34ecb6bb28bf49285695326e5506456 (patch) | |
| tree | af1856f48a0b517bc5582793ea5a9d80ade1477d /gitlab | |
| parent | 990eecac6f6c42ac0fde2e9af2f48ee20d9670fe (diff) | |
| download | gitlab-2d48e71fe34ecb6bb28bf49285695326e5506456.tar.gz | |
"timeout" option is an int, not a bool
Diffstat (limited to 'gitlab')
| -rwxr-xr-x | gitlab | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -327,11 +327,11 @@ except: pass try: - timeout = config.getboolean('global', 'timeout') + timeout = config.getint('global', 'timeout') except: pass try: - timeout = config.getboolean(gitlab_id, 'timeout') + timeout = config.getint(gitlab_id, 'timeout') except: pass |
