Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/HomeServer-Backend-win/ProcessSlave.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace HomeServer_Backend
{
public partial class ProcessesManager
public partial class ProcessesManager : IDisposable
{
public enum ProcessPriority : Int16
{
Expand Down Expand Up @@ -87,10 +87,10 @@
/// <summary>
/// Events on processs crash
/// </summary>
private event EventHandler? OnProcessCrashed; // TODO

Check warning on line 90 in backend/HomeServer-Backend-win/ProcessSlave.cs

View workflow job for this annotation

GitHub Actions / build-windows

The event 'ProcessesManager.ProcessSlave.OnProcessCrashed' is never used

Check warning on line 90 in backend/HomeServer-Backend-win/ProcessSlave.cs

View workflow job for this annotation

GitHub Actions / build-ubuntu

The event 'ProcessesManager.ProcessSlave.OnProcessCrashed' is never used

// Last logs
private long LastErrorTimeStamp = long.MinValue;

Check warning on line 93 in backend/HomeServer-Backend-win/ProcessSlave.cs

View workflow job for this annotation

GitHub Actions / build-windows

The field 'ProcessesManager.ProcessSlave.LastErrorTimeStamp' is assigned but its value is never used

Check warning on line 93 in backend/HomeServer-Backend-win/ProcessSlave.cs

View workflow job for this annotation

GitHub Actions / build-ubuntu

The field 'ProcessesManager.ProcessSlave.LastErrorTimeStamp' is assigned but its value is never used
/// <summary>
/// Events on logs error from process
/// </summary>
Expand Down
Loading