comments
This commit is contained in:
parent
845583e06b
commit
4342aa3901
|
@ -433,6 +433,9 @@ func main() {
|
||||||
if ok {
|
if ok {
|
||||||
ar.Chan <- av
|
ar.Chan <- av
|
||||||
} else {
|
} else {
|
||||||
|
// sending empty object so that I can still send a copy
|
||||||
|
// rather than a pointer above. Maybe not the right way
|
||||||
|
// to do this, but it works for now.
|
||||||
ar.Chan <- authReq{}
|
ar.Chan <- authReq{}
|
||||||
}
|
}
|
||||||
case ar := <-delAuthReqs:
|
case ar := <-delAuthReqs:
|
||||||
|
|
Loading…
Reference in New Issue