Skip to content

Commit

Permalink
Some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sevensolutions committed Jul 15, 2023
1 parent aa7cfbc commit cc0e4e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/NomadIIS/Services/Grpc/DriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public override Task<TaskConfigSchemaResponse> TaskConfigSchema ( TaskConfigSche
} );
}

// Called very often!
public override async Task Fingerprint ( FingerprintRequest request, IServerStreamWriter<FingerprintResponse> responseStream, ServerCallContext context )
{
_logger.LogDebug( nameof( Fingerprint ) );
Expand Down
5 changes: 3 additions & 2 deletions src/NomadIIS/Services/IisTaskHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ await _owner.LockAsync( async serverManager =>
foreach ( var env in task.Env )
AddEnvironmentVariable( envVarsCollection, env.Key, env.Value );
AddEnvironmentVariable( envVarsCollection, "NOMAD_STDOUT_PATH", task.StdoutPath );
AddEnvironmentVariable( envVarsCollection, "NOMAD_STDERR_PATH", task.StderrPath );
// TODOPEI: Doesn't work because of wrong permission
//AddEnvironmentVariable( envVarsCollection, "NOMAD_STDOUT_PATH", task.StdoutPath );
//AddEnvironmentVariable( envVarsCollection, "NOMAD_STDERR_PATH", task.StderrPath );
}
// Create Website
Expand Down

0 comments on commit cc0e4e2

Please sign in to comment.