Skip to content

Commit

Permalink
Merge pull request #2066 from OmniSharp/feature/fixalltimeout
Browse files Browse the repository at this point in the history
changed the default RunFixAllRequest timeout to 10 seconds
  • Loading branch information
JoeRobich authored Jan 20, 2021
2 parents 5582df7 + d05b6aa commit ff7bdca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class RunFixAllRequest : SimpleFileRequest

// If this is null -> filter not set -> try to fix all issues in current defined scope.
public FixAllItem[] FixAllFilter { get; set; }
public int Timeout { get; set; } = 3000;
public int Timeout { get; set; } = 10000;
public bool WantsAllCodeActionOperations { get; set; }
public bool WantsTextChanges { get; set; }
// Nullable for backcompat: null == true, for requests that don't set it
Expand Down

0 comments on commit ff7bdca

Please sign in to comment.