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
8b6ae266
Commit
8b6ae266
authored
10 years ago
by
John Chilton
Browse files
Options
Downloads
Patches
Plain Diff
Small fixes to pulsar/daemon.py.
parent
ed30ec76
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pulsar/daemon.py
+6
-6
6 additions, 6 deletions
pulsar/daemon.py
with
6 additions
and
6 deletions
pulsar/daemon.py
+
6
−
6
View file @
8b6ae266
...
@@ -72,7 +72,7 @@ def load_pulsar_app(
...
@@ -72,7 +72,7 @@ def load_pulsar_app(
log
.
exception
(
"
Failed to chdir
"
)
log
.
exception
(
"
Failed to chdir
"
)
raise
raise
try
:
try
:
sys
.
path
.
append
(
os
.
path
.
join
(
PULSAR_ROOT_DIR
)
)
sys
.
path
.
append
(
PULSAR_ROOT_DIR
)
except
Exception
:
except
Exception
:
log
.
exception
(
"
Failed to add Pulsar to sys.path
"
)
log
.
exception
(
"
Failed to add Pulsar to sys.path
"
)
raise
raise
...
@@ -116,7 +116,7 @@ def absolute_config_path(path, pulsar_root):
...
@@ -116,7 +116,7 @@ def absolute_config_path(path, pulsar_root):
return
path
return
path
def
_
_find_default_app_config
(
*
config_dirs
):
def
_find_default_app_config
(
*
config_dirs
):
for
config_dir
in
config_dirs
:
for
config_dir
in
config_dirs
:
app_config_path
=
os
.
path
.
join
(
config_dir
,
DEFAULT_APP_YAML
)
app_config_path
=
os
.
path
.
join
(
config_dir
,
DEFAULT_APP_YAML
)
if
os
.
path
.
exists
(
app_config_path
):
if
os
.
path
.
exists
(
app_config_path
):
...
@@ -135,7 +135,7 @@ def load_app_configuration(ini_path, app_conf_path=None, app_name=None, local_co
...
@@ -135,7 +135,7 @@ def load_app_configuration(ini_path, app_conf_path=None, app_name=None, local_co
elif
ini_path
:
elif
ini_path
:
# If not explicit app.yml file found - look next to server.ini -
# If not explicit app.yml file found - look next to server.ini -
# be it in pulsar root, some temporary staging directory, or /etc.
# be it in pulsar root, some temporary staging directory, or /etc.
app_conf_path
=
_
_find_default_app_config
(
app_conf_path
=
_find_default_app_config
(
os
.
path
.
dirname
(
ini_path
),
os
.
path
.
dirname
(
ini_path
),
)
)
if
app_conf_path
:
if
app_conf_path
:
...
@@ -153,7 +153,7 @@ def find_ini(supplied_ini, pulsar_root):
...
@@ -153,7 +153,7 @@ def find_ini(supplied_ini, pulsar_root):
return
supplied_ini
return
supplied_ini
# If not explicitly supplied an ini, check server.ini and then
# If not explicitly supplied an ini, check server.ini and then
# just res
t
ort to sample if that has not been configured.
# just resort to sample if that has not been configured.
for
guess
in
[
"
server.ini
"
,
"
server.ini.sample
"
]:
for
guess
in
[
"
server.ini
"
,
"
server.ini.sample
"
]:
ini_path
=
os
.
path
.
join
(
pulsar_root
,
guess
)
ini_path
=
os
.
path
.
join
(
pulsar_root
,
guess
)
if
os
.
path
.
exists
(
ini_path
):
if
os
.
path
.
exists
(
ini_path
):
...
@@ -181,7 +181,7 @@ class PulsarConfigBuilder(object):
...
@@ -181,7 +181,7 @@ class PulsarConfigBuilder(object):
self
.
app_name
=
kwds
.
get
(
"
app
"
)
or
(
args
and
args
.
app
)
or
DEFAULT_INI_APP
self
.
app_name
=
kwds
.
get
(
"
app
"
)
or
(
args
and
args
.
app
)
or
DEFAULT_INI_APP
@classmethod
@classmethod
def
populate_options
(
cl
azz
,
arg_parser
):
def
populate_options
(
cl
s
,
arg_parser
):
arg_parser
.
add_argument
(
"
--ini_path
"
,
default
=
None
)
arg_parser
.
add_argument
(
"
--ini_path
"
,
default
=
None
)
arg_parser
.
add_argument
(
"
--app_conf_path
"
,
default
=
None
)
arg_parser
.
add_argument
(
"
--app_conf_path
"
,
default
=
None
)
arg_parser
.
add_argument
(
"
--app
"
,
default
=
DEFAULT_INI_APP
)
arg_parser
.
add_argument
(
"
--app
"
,
default
=
DEFAULT_INI_APP
)
...
@@ -228,7 +228,7 @@ class PulsarManagerConfigBuilder(PulsarConfigBuilder):
...
@@ -228,7 +228,7 @@ class PulsarManagerConfigBuilder(PulsarConfigBuilder):
return
as_dict
return
as_dict
@classmethod
@classmethod
def
populate_options
(
cl
azz
,
arg_parser
):
def
populate_options
(
cl
s
,
arg_parser
):
PulsarConfigBuilder
.
populate_options
(
arg_parser
)
PulsarConfigBuilder
.
populate_options
(
arg_parser
)
arg_parser
.
add_argument
(
"
--manager
"
,
default
=
DEFAULT_MANAGER
)
arg_parser
.
add_argument
(
"
--manager
"
,
default
=
DEFAULT_MANAGER
)
...
...
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