We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d07df62 commit 161f2a4Copy full SHA for 161f2a4
agent/agent.go
@@ -103,6 +103,9 @@ type Agent struct {
103
104
cacheRefreshInterval time.Duration
105
clusterCache *appstatecache.Cache
106
+
107
+ inflightMu sync.Mutex
108
+ inflightLogs map[string]context.CancelFunc
109
}
110
111
const defaultQueueName = "default"
agent/inbound.go
@@ -72,6 +72,8 @@ func (a *Agent) processIncomingEvent(ev *event.Event) error {
72
log().WithError(err).Errorf("Unable to process incoming redis event")
73
74
}()
75
+ case event.TargetContainerLog:
76
+ err = a.processIncomingContainerLogRequest(ev)
77
default:
78
err = fmt.Errorf("unknown event target - processIncomingEvent: %s", ev.Target())
79
0 commit comments