Skip to content

Commit fcd6a4d

Browse files
Changed count() to count
1 parent 95597df commit fcd6a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PxWeb/Controllers/Api2/Admin/SearchindexController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public IActionResult IndexDatabase(int? pastHours, bool updateBreadcrumbInfo = f
6666
DateTime from = to - TimeSpan.FromHours(pastHours.Value);
6767
List<string> tableList = _dataSource.GetTablesPublishedBetween(from, to);
6868

69-
string message = $"Looked for tables published between {from:yyyy-MM-dd HH:mm:ss} and {to:yyyy-MM-dd HH:mm:ss}. Found {tableList.Count()}";
69+
string message = $"Looked for tables published between {from:yyyy-MM-dd HH:mm:ss} and {to:yyyy-MM-dd HH:mm:ss}. Found {tableList.Count}";
7070

7171
_responseState.AddEvent(new Event("Information", message));
7272
_logger.LogUpdatedTableBetween(from, to, tableList.Count);

0 commit comments

Comments
 (0)