Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos.core
Commits
f38efdf1
Commit
f38efdf1
authored
Mar 06, 2023
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup
parent
f6d4fb66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
12 deletions
+20
-12
slapos/grid/SlapObject.py
slapos/grid/SlapObject.py
+4
-3
slapos/grid/slapgrid.py
slapos/grid/slapgrid.py
+16
-9
No files found.
slapos/grid/SlapObject.py
View file @
f38efdf1
...
...
@@ -893,15 +893,16 @@ class Partition(object):
print
(
service_list
)
bad_service_list
=
[]
has_failed_on_watch_process
=
False
with
self
.
getSupervisorRPC
()
as
supervisor
:
all_process
=
supervisor
.
getAllProcessInfo
()
print
(
all_process
)
for
process
in
all_process
:
if
'on-watch'
in
process
[
'name'
]
and
process
[
'statename'
]
!=
"RUNNING"
:
self
.
logger
.
info
(
'On watch service %r is not running'
%
process
[
'name'
])
bad_service_list
.
append
(
process
[
'name'
])
return
bad_service_list
has_failed_on_watch_process
=
True
if
has_failed_on_watch_process
:
raise
ChildProcessError
(
"Some on-watch process is not running, please check the log."
)
def
cleanupFolder
(
self
,
folder_path
):
"""Delete all files and folders in a specified directory
...
...
slapos/grid/slapgrid.py
View file @
f38efdf1
...
...
@@ -1292,15 +1292,7 @@ stderr_logfile_backups=1
if
not
self
.
force_stop
:
self
.
_checkPromiseList
(
local_partition
)
computer_partition
.
started
()
bad_service_list
=
local_partition
.
checkOnWatchServiceStatus
()
if
len
(
bad_service_list
)
>
0
:
self
.
logger
.
removeHandler
(
partition_file_handler
)
for
service
in
bad_service_list
:
self
.
logger
.
info
(
'On watch service %r is not running'
%
service
)
self
.
logger
.
addHandler
(
partition_file_handler
)
raise
ChildProcessError
(
"No RUNNING on-watch process founded."
)
local_partition
.
checkOnWatchServiceStatus
()
self
.
_endInstallationTransaction
(
computer_partition
)
elif
computer_partition_state
==
COMPUTER_PARTITION_STOPPED_STATE
:
try
:
...
...
@@ -1498,6 +1490,11 @@ stderr_logfile_backups=1
except
slapos
.
slap
.
ResourceNotReady
:
return
'(not ready)'
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'I want generate an output here!!!'
)
self
.
logger
.
info
(
'Finished computer partitions.'
)
self
.
logger
.
info
(
'='
*
80
)
if
process_error_partition_list
:
...
...
@@ -1548,11 +1545,21 @@ stderr_logfile_backups=1
except
slapos
.
slap
.
ResourceNotReady
:
return
'(not ready)'
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'---------------------------------'
)
self
.
logger
.
info
(
'I want generate an output here!!!'
)
if
promise_error_partition_list
:
self
.
logger
.
info
(
'Finished computer partitions.'
)
for
partition
,
exc
in
promise_error_partition_list
:
self
.
logger
.
info
(
' %s[%s]: %s'
,
partition
.
getId
(),
getPartitionType
(
partition
),
exc
)
self
.
logger
.
info
(
'================================='
)
self
.
logger
.
info
(
'================================='
)
self
.
logger
.
info
(
'================================='
)
self
.
logger
.
info
(
'I want generate an output here!!!'
)
# Return success value
if
not
clean_run_promise
:
return
SLAPGRID_PROMISE_FAIL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment