-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial probe configuration #37
Initial probe configuration #37
Conversation
@@ -44,14 +45,22 @@ public sealed class AkkaHealthCheck : IExtension | |||
public AkkaHealthCheck(HealthCheckSettings settings, ExtendedActorSystem system) | |||
{ | |||
Settings = settings; | |||
system.Log.Info("Liveness Prove Provider: {0}", Settings.LivenessProbeProvider); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but need to add that log-info
setting here and check to see if that's on before logging all of these
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
||
var settings = new HealthCheckSettings(hocon.WithFallback(HealthCheckSettings.DefaultConfig()) | ||
.GetConfig("akka.healthcheck")); | ||
settings.LogConfigOnStart.Should().BeFalse(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good
* Initial probe configuration * Removed test string * Parsed log-config-on-start
No description provided.