Skip to content

Commit

Permalink
Merge pull request #635 from lukemartinlogan/dev
Browse files Browse the repository at this point in the history
Remove error log for Staging for now
  • Loading branch information
lukemartinlogan authored Oct 25, 2023
2 parents a3fa0b5 + 82837fc commit 07466e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/data_stager/src/data_stager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Server : public TaskLib {
std::unordered_map<hermes::BucketId, std::unique_ptr<AbstractStager>>::iterator it =
url_map_[rctx.lane_id_].find(task->bkt_id_);
if (it == url_map_[rctx.lane_id_].end()) {
HELOG(kError, "Could not find stager for bucket: {}", task->bkt_id_);
// HELOG(kError, "Could not find stager for bucket: {}", task->bkt_id_);
// TODO(llogan): Probably should add back...
// task->SetModuleComplete();
return;
Expand Down
2 changes: 1 addition & 1 deletion tasks/hermes_blob_mdm/src/hermes_blob_mdm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ class Server : public TaskLib {

// Update information
if (task->flags_.Any(HERMES_IS_FILE)) {
// TODO(llogan): Convert blob name to file offset and use kCap
// TODO(llogan): Move to data stager
adapter::BlobPlacement p;
p.DecodeBlobName(task->blob_name_->str(), 1 << 20);
bkt_mdm_.AsyncUpdateSize(task->task_node_ + 1,
Expand Down

0 comments on commit 07466e1

Please sign in to comment.