fix heart has started beating messages

This commit is contained in:
Basique Evangelist 2022-01-28 17:22:57 +03:00
parent 3a007cee90
commit e7b131fe2e

View File

@ -103,7 +103,7 @@ public class Db
public async Task<int> ReportHeartbeat(uint topicId, string heart, int timeoutSeconds) public async Task<int> ReportHeartbeat(uint topicId, string heart, int timeoutSeconds)
{ {
using var c = GetConnection(); using var c = GetConnection();
return await c.ExecuteAsync( return await c.QueryFirstAsync<int>(
@"CALL report_heartbeat(@topicId, @heart, @timeoutSeconds);", @"CALL report_heartbeat(@topicId, @heart, @timeoutSeconds);",
new { topicId, heart, timeoutSeconds }); new { topicId, heart, timeoutSeconds });
} }