Ensure that tools_download_duration_ms is int (#1513)
This commit is contained in:
parent
b2e16761f3
commit
4664f39699
6 changed files with 18 additions and 16 deletions
|
|
@ -568,7 +568,9 @@ export async function downloadCodeQL(
|
|||
undefined,
|
||||
finalHeaders
|
||||
);
|
||||
const toolsDownloadDurationMs = performance.now() - toolsDownloadStart;
|
||||
const toolsDownloadDurationMs = Math.round(
|
||||
performance.now() - toolsDownloadStart
|
||||
);
|
||||
|
||||
logger.debug(`CodeQL bundle download to ${codeqlPath} complete.`);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue