We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924b7f2 commit 8759ba6Copy full SHA for 8759ba6
src/main.rs
@@ -163,7 +163,7 @@ async fn main_loop() -> ExitCode {
163
EndpointType::Blaze => || blaze::Blaze::check_availability().boxed(),
164
EndpointType::Omop => || async { true }.boxed(), // TODO health check
165
#[cfg(feature = "query-sql")]
166
- EndpointType::BlazeAndSql => || blaze::check_availability().boxed(),
+ EndpointType::BlazeAndSql => || blaze::Blaze::check_availability().boxed(),
167
168
EndpointType::Sql => || async { true }.boxed(),
169
};
0 commit comments