mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Relax the check on object size changing
This commit is contained in:
parent
15ca575078
commit
eb24b08ced
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ void ObjectManager::PushLocalObject(const ObjectID &object_id, const NodeID &nod
|
|||
|
||||
if (object_reader->GetDataSize() != data_size ||
|
||||
object_reader->GetMetadataSize() != metadata_size) {
|
||||
if (object_reader->GetDataSize() == 0 && object_reader->GetMetadataSize() == 1) {
|
||||
if (object_reader->GetDataSize() == 0) {
|
||||
// TODO(scv119): handle object size changes in a more graceful way.
|
||||
RAY_LOG(WARNING) << object_id
|
||||
<< " is marked as failed but object_manager has stale info "
|
||||
|
|
Loading…
Add table
Reference in a new issue