Skip to content

Commit

Permalink
Bump timeout for querying Info.plist (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
premun authored Jan 12, 2022
1 parent 6f4215e commit d33e67a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private async Task<string> GetPlistProperty(string plistPath, string propertyNam
};

var commandOutput = new MemoryLog { Timestamp = false };
var result = await _processManager.ExecuteCommandAsync(PlistBuddyPath, args, log, commandOutput, commandOutput, TimeSpan.FromSeconds(15), cancellationToken: cancellationToken);
var result = await _processManager.ExecuteCommandAsync(PlistBuddyPath, args, log, commandOutput, commandOutput, TimeSpan.FromSeconds(30), cancellationToken: cancellationToken);

if (!result.Succeeded)
{
Expand Down

0 comments on commit d33e67a

Please sign in to comment.