Merge "Fix Null Reference exception in Windows agent PS scripts"

This commit is contained in:
Jenkins 2016-09-29 16:12:58 +00:00 committed by Gerrit Code Review
commit f306992e94
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ namespace Mirantis.Murano.WindowsAgent
{ {
currentResults.Add(new ExecutionResult { currentResults.Add(new ExecutionResult {
IsException = false, IsException = false,
Result = result.Select(SerializePsObject).Where(obj => obj != null).ToList() Result = result.Where(obj => obj != null).Select(SerializePsObject).ToList()
}); });
} }
} }

View File

@ -30,7 +30,7 @@ namespace Mirantis.Murano.WindowsAgent
{ {
base.OnStart(args); base.OnStart(args);
Log.Info("Version 0.5.3"); Log.Info("Version 0.5.4");
this.rabbitMqClient = new RabbitMqClient(); this.rabbitMqClient = new RabbitMqClient();