Update test mode for template export signature and discovered-user reporting.
parent
a5d0bc04c1
commit
803d645360
|
|
@ -144,6 +144,7 @@ internal static class AttendanceTestMode
|
|||
Console.WriteLine($"Exporting ALL face + fingerprint templates via ISAPI: device={exportAllIsapiDeviceId}, pageSize={exportAllIsapiPageSize}, maxUsers={exportAllIsapiMaxUsers}");
|
||||
|
||||
string jsonPath = "";
|
||||
int discoveredUsers = 0;
|
||||
string exportErr = "";
|
||||
bool exportOk = await Task.Run(() =>
|
||||
manager.TryExportAllUsersTemplatesToIsapiFile(
|
||||
|
|
@ -153,6 +154,7 @@ internal static class AttendanceTestMode
|
|||
exportAllIsapiMaxUsers,
|
||||
cts.Token,
|
||||
out jsonPath,
|
||||
out discoveredUsers,
|
||||
out exportErr), cts.Token).ConfigureAwait(false);
|
||||
|
||||
if (exportOk)
|
||||
|
|
|
|||
Loading…
Reference in New Issue