SERVER-107837 Replace tassert with uassert on SBE spilling failure (#42036)

GitOrigin-RevId: 99390f6f6ed39ecf4a577406f0e5480ed380bfda
This commit is contained in:
Ivan Fefer 2025-10-07 16:45:53 +02:00 committed by MongoDB Bot
parent fd4848d554
commit a020406ab9

View File

@ -188,10 +188,7 @@ int SpillingStore::upsertToRecordStore(OperationContext* opCtx,
}
});
if (!result.isOK()) {
tasserted(5843600, str::stream() << "Failed to write to disk because " << result.reason());
return 0;
}
uassertStatusOK(result);
return buf.len();
}