Skip to content

Commit 894c5fd

Browse files
bboston7graydon
andauthored
Apply suggestions from code review
Co-authored-by: Graydon Hoare <[email protected]>
1 parent d49edaf commit 894c5fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/Application.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class Application
171171
WORKER,
172172
EVICTION,
173173
OVERLAY,
174-
LEDGER_CLOSE
174+
APPLY
175175
};
176176

177177
virtual ~Application(){};

src/main/ApplicationImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ ApplicationImpl::ApplicationImpl(VirtualClock& clock, Config const& cfg)
192192
{
193193
mLedgerCloseThread =
194194
std::thread{[this]() { mLedgerCloseIOContext->run(); }};
195-
mThreadTypes[mLedgerCloseThread->get_id()] = ThreadType::LEDGER_CLOSE;
195+
mThreadTypes[mLedgerCloseThread->get_id()] = ThreadType::APPLY;
196196
}
197197
}
198198

0 commit comments

Comments
 (0)