Remove redundant -r parameter on endmqm
The railroad diagram for endmqm indicates that the and flags are mutually exclusive. Using implies the behaviour of .
This commit is contained in:
committed by
Arthur Barr
parent
45384755bb
commit
08c533ed99
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
© Copyright IBM Corporation 2017, 2020
|
© Copyright IBM Corporation 2017, 2022
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@@ -141,7 +141,7 @@ func stopQueueManager(name string) error {
|
|||||||
if isStandby {
|
if isStandby {
|
||||||
args = []string{"-x", name}
|
args = []string{"-x", name}
|
||||||
} else {
|
} else {
|
||||||
args = []string{"-s", "-w", "-r", "-tp", qmGracePeriod, name}
|
args = []string{"-s", "-w", "-tp", qmGracePeriod, name}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
out, rc, err := command.Run("endmqm", args...)
|
out, rc, err := command.Run("endmqm", args...)
|
||||||
|
|||||||
Reference in New Issue
Block a user