Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend Timeout for scans
Browse files Browse the repository at this point in the history
hadarshjfrog committed Aug 27, 2024
1 parent 59cba5e commit a0d2659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JFrogVSExtension/Utils/Util.cs
Original file line number Diff line number Diff line change
@@ -171,8 +171,8 @@ public static async Task<string> GetProcessOutputAsync(string pathToExe, string
pProcess.Start();
pProcess.BeginOutputReadLine();
pProcess.BeginErrorReadLine();
// Waits for maximal 100 seconds.
pProcess.WaitForExit(100000);
// Waits for maximal 1 hour
pProcess.WaitForExit(60*60*1000);

// Wait for the entire output to be written
if (outputWaitHandle.WaitOne(1) &&

0 comments on commit a0d2659

Please sign in to comment.