Fix history osd_set check - local OSD is always available!

Vitaliy Filippov 2021-03-09 02:18:09 +03:00
parent 7006875a24
commit bd178ac20f
1 changed files with 2 additions and 1 deletions

View File

@ -183,7 +183,8 @@ void osd_t::start_pg_peering(pg_t & pg)
bool found = false;
for (auto history_osd: history_set)
{
if (history_osd != 0 && c_cli.osd_peer_fds.find(history_osd) != c_cli.osd_peer_fds.end())
if (history_osd != 0 && (history_osd == this->osd_num ||
c_cli.osd_peer_fds.find(history_osd) != c_cli.osd_peer_fds.end()))
{
found = true;
break;