Skip to content

Commit 76f5454

Browse files
committed
Increase delay to 1s
1 parent 82c6887 commit 76f5454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceControlInstaller.Engine/FileSystem/FileUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ internal static void UnzipToSubdirectory(Stream zipStream, string targetPath)
153153

154154
// Validate 3rd-party security software didn't delete any of the files, but first, a small delay
155155
// so that any tool out there has a chance to remove the file before prematurely declaring victory
156-
Thread.Sleep(500);
156+
Thread.Sleep(1000);
157157
foreach (var entry in archive.Entries)
158158
{
159159
var pathParts = entry.FullName.Split('/', '\\');

0 commit comments

Comments
 (0)