Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
preset: [default]
include:
- toolchain: gcc
docker: 1.242.0
docker: 1.245.1
compiler: gcc
- toolchain: clang
docker: 1.242.0
docker: 1.245.1
compiler: clang
steps:
- name: Checkout opentxs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
env:
docker: '1.242.0'
docker: '1.245.1'
steps:
- name: Checkout opentxs
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
env:
docker: '1.242.0'
docker: '1.245.1'
steps:
- name: Checkout opentxs
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ otcommon_print_build_details(METIER_SERVER_PEDANTIC_BUILD "")
otcommon_find_system_libraries()
find_package(
opentxs
1.242
1.245
CONFIG
REQUIRED
)
Expand Down
3 changes: 0 additions & 3 deletions src/metier_server/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ auto App::run_daemon() noexcept(false) -> int
[](auto const& api, auto& alloc) {
return std::allocate_shared<EventLoop>(alloc.result_, api, alloc);
},
{},
{},
1,
alloc_);

if (false == running) {
Expand Down
5 changes: 5 additions & 0 deletions src/metier_server/EventLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ auto EventLoop::print_status(
reset_status_timer(state);
}

auto EventLoop::RequestedTimerCount() const noexcept -> std::size_t
{
return 1_uz;
}

auto EventLoop::Run(
opentxs::api::Session const&,
opentxs::util::eventloop::state::PreInit&,
Expand Down
2 changes: 2 additions & 0 deletions src/metier_server/EventLoop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ class EventLoop final : public opentxs::api::session::EventLoop
[[nodiscard]] auto Description() const noexcept -> std::string_view final;

[[nodiscard]] auto get_deleter() noexcept -> delete_function final;
[[nodiscard]] auto RequestedTimerCount() const noexcept
-> std::size_t final;
[[nodiscard]] auto Run(
opentxs::api::Session const& api,
opentxs::util::eventloop::state::PreInit& state,
Expand Down
Loading