Skip to content

Commit 4adf907

Browse files
committed
Fix comment, remove unneeded logging field
1 parent 1eac7d0 commit 4adf907

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cluster/node/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func New(config Config) *Node {
9696
n.config = coreConfig
9797
n.skills = coreSkills
9898

99-
n.core = NewCore(n.id, n.logger.WithComponent("ClusterCore").WithField("address", address))
99+
n.core = NewCore(n.id, n.logger.WithComponent("ClusterCore"))
100100
n.core.SetEssentials(address, coreConfig)
101101

102102
n.coreLastErr = err

http/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ type RestClient interface {
5858
FilesystemAddFile(storage, path string, data io.Reader) error // PUT /v3/fs/{storage}/{path}
5959

6060
Events(ctx context.Context, filters api.EventFilters) (<-chan api.LogEvent, error) // POST /v3/events
61-
MediaEvents(ctx context.Context, storage, pattern string) (<-chan api.MediaEvent, error) // GET /v3/fs/{storage}, GET /v3/(rtmp|srt)
61+
MediaEvents(ctx context.Context, storage, pattern string) (<-chan api.MediaEvent, error) // GET /v3/events/media/{storage}
6262

6363
ProcessList(opts ProcessListOptions) ([]api.Process, error) // GET /v3/process
6464
ProcessAdd(p *app.Config, metadata map[string]any) error // POST /v3/process

0 commit comments

Comments
 (0)