Skip to content

Commit

Permalink
Remove zeroed sockets_used/sockets_total
Browse files Browse the repository at this point in the history
Values are zeroed following 4.x changes.
  • Loading branch information
lhoguin authored and essen committed Jun 24, 2024
1 parent ffe1522 commit b0157fe
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,6 @@ namespace EasyNetQ.Management.Client.Model
long MemCode,
long FdUsed,
long FdTotal,
long SocketsUsed,
long SocketsTotal,
long MemUsed,
long MemLimit,
bool MemAlarm,
Expand Down Expand Up @@ -1031,8 +1029,6 @@ namespace EasyNetQ.Management.Client.Model
public long Processors { get; init; }
public long RunQueue { get; init; }
public bool Running { get; init; }
public long SocketsTotal { get; init; }
public long SocketsUsed { get; init; }
public string Type { get; init; }
public long Uptime { get; init; }
}
Expand Down
2 changes: 0 additions & 2 deletions Source/EasyNetQ.Management.Client.Tests/Json/Nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
"mem_code": 18006918,
"fd_used": 42,
"fd_total": 1024,
"sockets_used": 2,
"sockets_total": 829,
"mem_used": 37360256,
"mem_limit": 3405386547,
"mem_alarm": false,
Expand Down
2 changes: 0 additions & 2 deletions Source/EasyNetQ.Management.Client/Model/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public record Node(
long MemCode,
long FdUsed,
long FdTotal,
long SocketsUsed,
long SocketsTotal,
long MemUsed,
long MemLimit,
bool MemAlarm,
Expand Down

0 comments on commit b0157fe

Please sign in to comment.