e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
25 lines
312 B
Go
25 lines
312 B
Go
package memory
|
|
|
|
import (
|
|
"go-micro.dev/v6/debug/log"
|
|
)
|
|
|
|
type logStream struct {
|
|
stream <-chan log.Record
|
|
stop chan bool
|
|
}
|
|
|
|
func (l *logStream) Chan() <-chan log.Record {
|
|
return l.stream
|
|
}
|
|
|
|
func (l *logStream) Stop() error {
|
|
select {
|
|
case <-l.stop:
|
|
return nil
|
|
default:
|
|
close(l.stop)
|
|
}
|
|
return nil
|
|
}
|