-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
problem
When using the prepareForShutdown API, the state of shutdowntriggered is set to true.
versions
ACS 4.19.2.0
CMK 6.4.0
The steps to reproduce the bug
- Observe the current state before shutdown
ready forshutdown managementserverid=0b2faa01-706f-4f37-82ff-3e5e8f0971f8
{
"readyforshutdown": {
"managementserverid": 1,
"pendingjobscount": 0,
"readyforshutdown": true,
"shutdowntriggered": false
}
}
- Perform prepare for shutdown
prepare forshutdown managementserverid=0b2faa01-706f-4f37-82ff-3e5e8f0971f8
{
"prepareforshutdown": {
"managementserverid": 1,
"pendingjobscount": 0,
"readyforshutdown": true,
"shutdowntriggered": true
}
}
- Observe
shutdowntriggeredis set totrue.
...
What to do about it?
Shutdown triggered should remain false until triggerShutdown is called against the management server.