Skip to content

Commit

Permalink
chore: debug test
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Gershman <[email protected]>
  • Loading branch information
romange committed Aug 7, 2024
1 parent b977d41 commit f63613d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
./multi_test --multi_exec_mode=1
./multi_test --multi_exec_mode=3
./json_family_test --jsonpathv2=false
./tiered_storage_test --vmodule=db_slice=2 --logtostderr
- name: Upload unit logs on failure
if: failure()
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion src/server/db_slice.cc
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ OpResult<DbSlice::AddOrFindResult> DbSlice::AddOrFindInternal(const Context& cnt
try {
it = db.prime.InsertNew(std::move(co_key), PrimeValue{}, evp);
} catch (bad_alloc& e) {
VLOG(2) << "AddOrFind2: bad alloc exception, budget: " << memory_budget_;
VLOG(2) << "AddOrFind: bad alloc exception, budget: " << memory_budget_ + memory_offset;
events_.insertion_rejections++;
return OpStatus::OUT_OF_MEMORY;
}
Expand Down

0 comments on commit f63613d

Please sign in to comment.