Skip to content

Commit 548a371

Browse files
committed
Remove space between schema and table
1 parent 145d1dc commit 548a371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Hangfire.PostgreSql/PostgreSqlJobQueueMonitoringApi.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public EnqueuedAndFetchedCountDto GetEnqueuedAndFetchedCount(string queue)
5656
string sqlQuery = $@"
5757
SELECT (
5858
SELECT COUNT(*)
59-
FROM ""{_storage.Options.SchemaName} "".""jobqueue""
59+
FROM ""{_storage.Options.SchemaName}"".""jobqueue""
6060
WHERE ""fetchedat"" IS NULL
6161
AND ""queue"" = @Queue
6262
) ""EnqueuedCount"",

0 commit comments

Comments
 (0)