Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
03d31f72
Commit
03d31f72
authored
Jan 08, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove pidfile after killing serve
parent
54b19234
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+7
-0
No files found.
mysql-test/mysql-test-run.pl
View file @
03d31f72
...
@@ -2747,6 +2747,13 @@ sub stop_all_servers () {
...
@@ -2747,6 +2747,13 @@ sub stop_all_servers () {
My::SafeProcess::
shutdown
(
0
,
# shutdown timeout 0 => kill
My::SafeProcess::
shutdown
(
0
,
# shutdown timeout 0 => kill
started
(
all_servers
()));
started
(
all_servers
()));
# Remove pidfiles
foreach
my
$server
(
all_servers
()
)
{
my
$pid_file
=
$server
->
if_exist
('
pid-file
');
unlink
(
$pid_file
)
if
defined
$pid_file
;
}
# Mark servers as stopped
# Mark servers as stopped
map
(
$_
->
{
proc
}
=
undef
,
all_servers
());
map
(
$_
->
{
proc
}
=
undef
,
all_servers
());
...
...
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