Skip to content

Commit

Permalink
(chocolateyGH-304) Reduce sleep time to 2 seconds
Browse files Browse the repository at this point in the history
When waiting for the system to finish cleaning up, 2 seconds seems more
appropriate.
  • Loading branch information
ferventcoder committed Jun 5, 2015
1 parent d9f6f11 commit fb516e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AutomaticUninstallerService : IAutomaticUninstallerService
private readonly IFileSystem _fileSystem;
private readonly IRegistryService _registryService;
private readonly ICommandExecutor _commandExecutor;
private const int SLEEP_TIME = 5;
private const int SLEEP_TIME = 2;

public AutomaticUninstallerService(IChocolateyPackageInformationService packageInfoService, IFileSystem fileSystem, IRegistryService registryService, ICommandExecutor commandExecutor)
{
Expand Down

0 comments on commit fb516e4

Please sign in to comment.