Skip to content

Commit acaa3b6

Browse files
committed
refactor(agent): rename startBoundaryLogSocketServer to startBoundaryLogProxyServer
1 parent 0d27d6b commit acaa3b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agent/agent.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ func (a *agent) init() {
373373
)
374374

375375
a.initSocketServer()
376-
a.startBoundaryLogSocketServer()
376+
a.startBoundaryLogProxyServer()
377377

378378
go a.runLoop()
379379
}
@@ -398,10 +398,10 @@ func (a *agent) initSocketServer() {
398398
a.logger.Debug(a.hardCtx, "socket server started", slog.F("path", a.socketPath))
399399
}
400400

401-
// startBoundaryLogSocketServer starts the boundary log proxy socket server.
401+
// startBoundaryLogProxyServer starts the boundary log proxy socket server.
402402
// This creates the Unix socket and begins accepting connections from boundary
403403
// processes. Logs are buffered until the forwarder is started via startAgentAPI.
404-
func (a *agent) startBoundaryLogSocketServer() {
404+
func (a *agent) startBoundaryLogProxyServer() {
405405
a.boundaryLogProxyMu.Lock()
406406
defer a.boundaryLogProxyMu.Unlock()
407407

0 commit comments

Comments
 (0)