Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pulsar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
NDIP
Pulsar
Commits
0c7530e8
Commit
0c7530e8
authored
2 years ago
by
Nate Coraor
Browse files
Options
Downloads
Patches
Plain Diff
Lint
parent
45f28bac
No related branches found
No related tags found
3 merge requests
!44
Try to fix CI.
,
!38
Generalize orchestrated container scheduling.
,
!22
update Pulsar to 0.15.3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pulsar/manager_factory.py
+1
-1
1 addition, 1 deletion
pulsar/manager_factory.py
with
1 addition
and
1 deletion
pulsar/manager_factory.py
+
1
−
1
View file @
0c7530e8
...
...
@@ -94,7 +94,7 @@ def _get_manager_modules():
managers_dir
=
pulsar
.
managers
.
__path__
[
0
]
module_names
=
[]
for
fname
in
os
.
listdir
(
managers_dir
):
if
not
(
fname
.
startswith
(
"
_
"
)
)
and
fname
.
endswith
(
"
.py
"
):
if
not
fname
.
startswith
(
"
_
"
)
and
fname
.
endswith
(
"
.py
"
):
manager_module_name
=
"
pulsar.managers.%s
"
%
fname
[:
-
len
(
"
.py
"
)]
module_names
.
append
(
manager_module_name
)
return
module_names
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment