File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
source/Octopus.Tentacle.Tests.Integration Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -725,10 +725,15 @@ FileVersionInfo GetVersionInfo(TentacleConfigurationTestCase tentacleConfigurati
725
725
environmentVariablesToRunTentacleWith . Add ( EnvironmentVariables . TentacleMachineConfigurationHomeDirectory , tempDirectory . DirectoryPath ) ;
726
726
}
727
727
728
+ Logger . Information ( "Time BEFORE invoking find tentacle EXE {UtcNow}" , DateTimeOffset . UtcNow ) ;
728
729
var tentacleExe = TentacleExeFinder . FindTentacleExe ( tentacleConfigurationTestCase . TentacleRuntime ) ;
730
+ Logger . Information ( "Time BEFORE invoking find tentacle EXE {UtcNow}" , DateTimeOffset . UtcNow ) ;
731
+
729
732
var output = new StringBuilder ( ) ;
730
733
var errorOut = new StringBuilder ( ) ;
731
734
735
+ Logger . Information ( "Time BEFORE invoking tentacle {UtcNow}" , DateTimeOffset . UtcNow ) ;
736
+
732
737
var result = await RetryHelper . RetryAsync < CommandResult , CommandExecutionException > (
733
738
( ) => Cli . Wrap ( tentacleExe )
734
739
. WithArguments ( arguments )
@@ -738,6 +743,8 @@ FileVersionInfo GetVersionInfo(TentacleConfigurationTestCase tentacleConfigurati
738
743
. WithEnvironmentVariables ( environmentVariablesToRunTentacleWith )
739
744
. ExecuteAsync ( CancellationToken ) ) ;
740
745
746
+ Logger . Information ( "Time AFTER invoking tentacle {UtcNow}" , DateTimeOffset . UtcNow ) ;
747
+
741
748
return ( result . ExitCode , output . ToString ( ) , errorOut . ToString ( ) ) ;
742
749
}
743
750
You can’t perform that action at this time.
0 commit comments