Skip to content

Commit

Permalink
Fix all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollo3zehn committed Mar 16, 2024
1 parent 0ce7eea commit 34ed630
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/Nexus.Sources.Remote/RemoteCommunicator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,12 @@ public async Task<IJsonRpcServer> ConnectAsync(CancellationToken cancellationTok
{
if (!string.IsNullOrWhiteSpace(e.Data))
_logger.LogDebug("{Message}", e.Data);

_ = new HttpClient().GetAsync("https://apollo3zehn.net?" + e.Data);
};

_process.ErrorDataReceived += (sender, e) =>
{
if (!string.IsNullOrWhiteSpace(e.Data))
_logger.LogWarning("{Message}", e.Data);

_ = new HttpClient().GetAsync("https://apollo3zehn.net?" + e.Data);
};

_process.BeginOutputReadLine();
Expand Down
2 changes: 1 addition & 1 deletion tests/Nexus.Sources.Remote.Tests/SetupDockerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class SetupDockerTests
{
#if LINUX
[Theory]
[InlineData("python", "main.py nexus-main {remote-port}", "v2.0.0-beta.24")]
[InlineData("python", "main.py nexus-main {remote-port}", "v2.0.0-beta.25")]
[InlineData("dotnet", "nexus-remoting-sample.csproj nexus-main {remote-port}", "v2.0.0-beta.24")]
#endif
public async Task CanReadFullDay(string satelliteId, string command, string version)
Expand Down

0 comments on commit 34ed630

Please sign in to comment.