Compare commits
2 Commits
zim-bundle
...
2023.10.21
Author | SHA1 | Date | |
---|---|---|---|
de4ab0d02c | |||
d1458bab4a |
@ -4,7 +4,7 @@ ARG HTTP_PROXY=
|
|||||||
ARG HTTPS_PROXY=
|
ARG HTTPS_PROXY=
|
||||||
ARG http_proxy=
|
ARG http_proxy=
|
||||||
ARG https_proxy=
|
ARG https_proxy=
|
||||||
ARG GO_VERSION=1.20.2
|
ARG GO_VERSION=1.21.2
|
||||||
|
|
||||||
# Install dev environment dependencies
|
# Install dev environment dependencies
|
||||||
RUN export DEBIAN_FRONTEND=noninteractive &&\
|
RUN export DEBIAN_FRONTEND=noninteractive &&\
|
||||||
|
@ -83,8 +83,12 @@ func (d *eventDispatcher) Close() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (d *eventDispatcher) close() {
|
func (d *eventDispatcher) close() {
|
||||||
d.closed = true
|
if d.closed {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
close(d.in)
|
close(d.in)
|
||||||
|
d.closed = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *eventDispatcher) In(msg bus.Message) (err error) {
|
func (d *eventDispatcher) In(msg bus.Message) (err error) {
|
||||||
|
Reference in New Issue
Block a user