From: Andrew Au Date: Tue, 14 May 2024 01:48:02 +0000 (-0700) Subject: Fixing a case where we should set the RundownKeyword (#4662) X-Git-Tag: accepted/tizen/unified/20241231.014852~40^2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da2ee7d91af0923fcdc0684d0999e467672f1d54;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Fixing a case where we should set the RundownKeyword (#4662) --- diff --git a/src/Tools/dotnet-trace/Profile.cs b/src/Tools/dotnet-trace/Profile.cs index 6fd6caaed..2114ff054 100644 --- a/src/Tools/dotnet-trace/Profile.cs +++ b/src/Tools/dotnet-trace/Profile.cs @@ -22,7 +22,7 @@ namespace Microsoft.Diagnostics.Tools.Trace public string Description { get; } - public long RundownKeyword { get; set; } + public long RundownKeyword { get; set; } = EventPipeSession.DefaultRundownKeyword; public RetryStrategy RetryStrategy { get; set; } = RetryStrategy.NothingToRetry;