diff --git a/JetHerald/Services/Db.cs b/JetHerald/Services/Db.cs index 84a812b..9fa9720 100644 --- a/JetHerald/Services/Db.cs +++ b/JetHerald/Services/Db.cs @@ -103,7 +103,7 @@ public class Db public async Task ReportHeartbeat(uint topicId, string heart, int timeoutSeconds) { using var c = GetConnection(); - return await c.ExecuteAsync( + return await c.QueryFirstAsync( @"CALL report_heartbeat(@topicId, @heart, @timeoutSeconds);", new { topicId, heart, timeoutSeconds }); }