Skip to content

Commit

Permalink
chore: increase buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Apr 17, 2023
1 parent 4204df9 commit 9eecb4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ public static ExecCredentialResponse ExecuteExternalCommand(ExternalExecution co
}

var sb = new StringBuilder();
var buffer = new char[1];
var buffer = new char[1024];
while (true)
{
var readTask = process.StandardError.ReadAsync(buffer, 0, buffer.Length);
Expand Down

0 comments on commit 9eecb4a

Please sign in to comment.