You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug#30672362: GROUP REPLICATION TEST FAILING ON WIN DUE TO STATIC INITIALIZATIONS OF VARIABLES
Issue
=====
The testcases gr_autostart_on_install, gr_user and gr_readmode_on_autostart
are failing Windows platform when build with with openssl-1.1.1d-static
Group Replication started with 'group_replication_ssl_mode=REQUIRED' mode.
The issue is because of variables plugin_is_being_uninstalled and
plugin_is_waiting_to_set_server_read_mode are not getting reset in
plugin_group_replication_init() (called when
`INSTALL PLUGIN group_replication..` is executed) and their static
initialization in plugin.cc.
Solution
========
Remove static initialization of plugin variables plugin_is_being_uninstalled
and plugin_is_waiting_to_set_server_read_mode in plugin.cc and reset them in
plugin_group_replication_init().
RB: 23559
0 commit comments