We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d2b76e commit 4a52151Copy full SHA for 4a52151
src/Contrib/Development/Masa.Contrib.Development.DaprStarter/DaprProcess.cs
@@ -77,6 +77,10 @@ private void StartCore(DaprCoreOptions options)
77
_heartBeatTimer.Elapsed += (_, _) => HeartBeat();
78
_heartBeatTimer.Start();
79
}
80
+ else
81
+ {
82
+ _heartBeatTimer?.Start();
83
+ }
84
85
86
public void CompleteDaprEnvironment(ushort? httpPort, ushort? grpcPort)
@@ -114,6 +118,7 @@ public void Stop()
114
118
lock (_lock)
115
119
{
116
120
StopCore(SuccessDaprOptions);
121
+ _heartBeatTimer?.Stop();
117
122
123
124
0 commit comments