Skip to content

Commit

Permalink
config: avoid inferred never return type
Browse files Browse the repository at this point in the history
  • Loading branch information
djc authored and wez committed Sep 16, 2024
1 parent cc53588 commit 0208f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ pub async fn load_config() -> anyhow::Result<LuaConfig> {
};

let _timer = latency_timer("context-creation");
func.call_async(()).await?;
func.call_async::<_, ()>(()).await?;
}
LUA_COUNT.increment(1.);

Expand Down

0 comments on commit 0208f3d

Please sign in to comment.