Skip to content

Commit d34a601

Browse files
committed
feat(wasi-observe): A WIP WASI Observe host component
Signed-off-by: Caleb Schoepp <caleb.schoepp@fermyon.com>
1 parent db9c91f commit d34a601

File tree

2 files changed

+489
-0
lines changed

2 files changed

+489
-0
lines changed

crates/runtime-config/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,12 @@ impl FactorRuntimeConfigSource<ObserveFactor> for TomlRuntimeConfigSource<'_, '_
389389
}
390390
}
391391

392+
impl FactorRuntimeConfigSource<ObserveFactor> for TomlRuntimeConfigSource<'_, '_> {
393+
fn get_runtime_config(&mut self) -> anyhow::Result<Option<()>> {
394+
Ok(None)
395+
}
396+
}
397+
392398
impl RuntimeConfigSourceFinalizer for TomlRuntimeConfigSource<'_, '_> {
393399
fn finalize(&mut self) -> anyhow::Result<()> {
394400
Ok(self.toml.validate_all_keys_used()?)

0 commit comments

Comments
 (0)