From e03ad87776e50cc18058e409d9f651f6269936dc Mon Sep 17 00:00:00 2001 From: JoannaaKL Date: Wed, 14 Sep 2022 08:40:51 +0000 Subject: [PATCH] Remove the default value for bool variable --- src/Runner.Worker/Container/ContainerInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Worker/Container/ContainerInfo.cs b/src/Runner.Worker/Container/ContainerInfo.cs index ce883cc10..32e55eb3c 100644 --- a/src/Runner.Worker/Container/ContainerInfo.cs +++ b/src/Runner.Worker/Container/ContainerInfo.cs @@ -92,7 +92,7 @@ namespace GitHub.Runner.Worker.Container public bool IsJobContainer { get; set; } public bool IsAlpine { get; set; } - public bool FailedInitialization { get; set; } = false; + public bool FailedInitialization { get; set; } public IDictionary ContainerEnvironmentVariables {