SERVER-107837 Replace tassert with uassert on SBE spilling failure (#42036)
GitOrigin-RevId: 99390f6f6ed39ecf4a577406f0e5480ed380bfda
This commit is contained in:
parent
fd4848d554
commit
a020406ab9
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user