diff --git a/src/OmniSharp.Abstractions/Models/v1/FixAll/RunFixAllRequest.cs b/src/OmniSharp.Abstractions/Models/v1/FixAll/RunFixAllRequest.cs index 5180f474c9..5c8475c9c4 100644 --- a/src/OmniSharp.Abstractions/Models/v1/FixAll/RunFixAllRequest.cs +++ b/src/OmniSharp.Abstractions/Models/v1/FixAll/RunFixAllRequest.cs @@ -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