Reputation: 601
I have a 6GB dump file for an IIS process that I generated and during the "Running Analysis" phase of processing I am getting a "Canceling due to timeout" message from the tool after the 60s limit.
Is there a way to increase the timeout?
Upvotes: 4
Views: 1882
Reputation: 3724
The timeout can be configured by editing the C:\Program Files\DebugDiag\AnalysisRules\DebugDiag.AnalysisRules.dll.config
file, and updating the GCRootTimeout
config setting:
<!-- GCRootTimeout: maximum number of seconds to spend scanning for GC root chains -->
<add key="GCRootTimeout" value="1200"/>
Upvotes: 8