Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2249
Support extra_files in RQ tasks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support extra_files in RQ tasks
rq-task-extra-files
into
master
Overview
3
Commits
4
Pipelines
0
Changes
7
Merged
ml bonhomme
requested to merge
rq-task-extra-files
into
master
1 year ago
Overview
3
Commits
4
Pipelines
0
Changes
1
Expand
closes
#1695 (closed)
0
0
Merge request reports
Compare
version 10
version 13
05ad3973
11 months ago
version 12
a56d38f7
11 months ago
version 11
3afbb540
11 months ago
version 10
e63831fd
11 months ago
version 9
614555b5
1 year ago
version 8
f8ee68ed
1 year ago
version 7
9f8c8ca1
1 year ago
version 6
ca72cd21
1 year ago
version 5
ca72cd21
1 year ago
version 4
ca72cd21
1 year ago
version 3
ca72cd21
1 year ago
version 2
c16efbfd
1 year ago
version 1
0b108a23
1 year ago
master (base)
and
version 11
latest version
0d5c8830
4 commits,
11 months ago
version 13
05ad3973
4 commits,
11 months ago
version 12
a56d38f7
4 commits,
11 months ago
version 11
3afbb540
3 commits,
11 months ago
version 10
e63831fd
3 commits,
11 months ago
version 9
614555b5
2 commits,
1 year ago
version 8
f8ee68ed
2 commits,
1 year ago
version 7
9f8c8ca1
2 commits,
1 year ago
version 6
ca72cd21
5 commits,
1 year ago
version 5
ca72cd21
2 commits,
1 year ago
version 4
ca72cd21
5 commits,
1 year ago
version 3
ca72cd21
2 commits,
1 year ago
version 2
c16efbfd
1 commit,
1 year ago
version 1
0b108a23
1 commit,
1 year ago
Show latest version
1 file
+
0
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
arkindex/project/utils.py deleted
100644 → 0
+
0
−
13
Options
from
urllib.parse
import
urlparse
def
should_verify_cert
(
url
):
"""
Skip SSL certification validation when hitting a development instance
"""
# Special case when no url is provided
if
url
is
None
:
return
True
host
=
urlparse
(
url
).
netloc
return
not
host
.
endswith
(
"
ark.localhost
"
)
Loading