Skip to content

Commit

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

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

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

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

_process.BeginOutputReadLine();
Expand Down
2 changes: 1 addition & 1 deletion src/remoting/python-remoting/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
},
python_requires=">=3.9",
install_requires=[
"nexus-extensibility>=2.0.0b8"
"nexus-extensibility>=2.0.0b24"
]
)

0 comments on commit c7ec36e

Please sign in to comment.