|
The plugin is expected to send two reports: one on plugin startup (5 minutes after it was loaded), and the other one on server shutdown which happens during the test.
The problem is that include/restart_mysqld.inc which the test uses to restart the server has the hardcoded shutdown timeout 10 sec, it is not always enough, so the server gets SIGKILL-ed before the plugin has a chance to send a report and/or to write a message about it in the error log.
I am going to add a parameter to restart_mysqld.inc (with the default = 10, so it won't change anything for existing tests), and set it to a bigger value in feedback_plugin_send.
|