Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pipelines
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.pipelines
Merge requests
!55
An error occurred while fetching the assigned milestone of the selected merge_request.
Moved VALID_DASK_CLIENT_STRINGS to bob.pipelines
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Moved VALID_DASK_CLIENT_STRINGS to bob.pipelines
valid-strings
into
master
Overview
1
Commits
1
Pipelines
1
Changes
1
1 open thread
Hide all comments
Merged
Moved VALID_DASK_CLIENT_STRINGS to bob.pipelines
Tiago de Freitas Pereira
requested to merge
valid-strings
into
master
Dec 6, 2020
Overview
1
Commits
1
Pipelines
1
Changes
1
1 open thread
Hide all comments
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fde28dfc
1 commit,
Dec 6, 2020
1 file
+
14
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bob/pipelines/distributed/__init__.py
+
14
−
0
View file @ fde28dfc
Edit in single-file editor
Open in Web IDE
Hide comments on this file
Show full file
@@ -2,3 +2,17 @@
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
# DASK-click VALID_DASK_CLIENT_STRINGS
# TO BE USED IN:
# @click.option(
# "--dask-client",
# "-l",
# entry_point_group="dask.client",
# string_exceptions=VALID_DASK_CLIENT_STRINGS,
# default="single-threaded",
# help="Dask client for the execution of the pipeline.",
# cls=ResourceOption,
# )
Amir MOHAMMADI
@amohammadi
Dec 9, 2020
Owner
You could have moved this option here too. click options can be easily re-used.
Please
register
or
sign in
to reply
VALID_DASK_CLIENT_STRINGS
=
(
"
single-threaded
"
,
"
sync
"
,
"
threaded
"
,
"
processes
"
)
Loading
You could have moved this option here too. click options can be easily re-used.