refactor: remove unused fields from WorkerService struct

This commit is contained in:
Marvin Zhang
2025-09-12 18:17:36 +08:00
parent e221e3c640
commit 7c33fec784

View File

@@ -26,7 +26,6 @@ type WorkerService struct {
healthSvc *HealthService
// settings
address interfaces.Address
heartbeatInterval time.Duration
// context and synchronization
@@ -38,7 +37,6 @@ type WorkerService struct {
// internals
stopped bool
n *models.Node
s grpc.NodeService_SubscribeClient
isReady bool
interfaces.Logger
}