/*
If certification information is too big this event can't be transmitted
as it would cause failures on all group members.
To avoid this, we now instead encode an error that will make the joiner
leave the group.
*/
if (event_size > get_slave_max_allowed_packet()) {
cert_info.clear();
cert_info[Certifier::CERTIFICATION_INFO_ERROR_NAME] =
"Certification information is too large for transmission.";
vchange_event->set_certification_info(&cert_info, &event_size);
}

相关文章:

  • 2021-08-30
  • 2022-03-09
  • 2021-07-22
  • 2022-12-23
  • 2021-09-08
  • 2022-12-23
  • 2022-02-01
  • 2022-02-02
猜你喜欢
  • 2021-10-04
  • 2022-02-05
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2022-02-19
  • 2022-12-23
相关资源
相似解决方案