mirror of
https://github.com/XRPLF/clio.git
synced 2026-06-05 09:46:48 +00:00
Add a timer and new `FallbackRecovery` state to try to recover from `Fallback` writer state every hour. Fixes #2997
16 lines
336 B
CMake
16 lines
336 B
CMake
add_library(clio_cluster)
|
|
|
|
target_sources(
|
|
clio_cluster
|
|
PRIVATE
|
|
Backend.cpp
|
|
CacheLoaderDecider.cpp
|
|
ClioNode.cpp
|
|
ClusterCommunicationService.cpp
|
|
Metrics.cpp
|
|
WriterDecider.cpp
|
|
impl/FallbackRecoveryTimer.cpp
|
|
)
|
|
|
|
target_link_libraries(clio_cluster PRIVATE clio_util clio_data)
|