mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2025-04-06 14:43:31 +03:00
fix error
This commit is contained in:
parent
e7a0048a76
commit
51a141a35e
3 changed files with 6 additions and 6 deletions
|
@ -76,7 +76,7 @@ func (s *Subscription) Receive(out *Message) error {
|
|||
case <-s.ctx.Done():
|
||||
return errors.New("Topic has been closed")
|
||||
default:
|
||||
*out <- s.Inbox
|
||||
*out = <-s.Inbox
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ func TestMessageSubAndPub(t *testing.T) {
|
|||
//订阅成功了
|
||||
|
||||
go func() {
|
||||
EXIT
|
||||
EXIT:
|
||||
for {
|
||||
select {
|
||||
case <-exit:
|
||||
|
@ -56,7 +56,7 @@ func TestMessageSubAndPub(t *testing.T) {
|
|||
//订阅成功了
|
||||
//发送一个消息
|
||||
go func() {
|
||||
EXIT
|
||||
EXIT:
|
||||
for {
|
||||
select {
|
||||
case <-exit:
|
||||
|
|
|
@ -15,8 +15,8 @@ func TestContext(t *testing.T) {
|
|||
|
||||
time.Sleep(time.Second)
|
||||
|
||||
reqest, err := http.NewRequest("GET", "http://localhost:8099/hello", nil) // http client get 请求
|
||||
assertEq(nil, err)
|
||||
reqest, _ := http.NewRequest("GET", "http://localhost:8099/hello", nil) // http client get 请求
|
||||
|
||||
client := &http.Client{}
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
reqest = reqest.WithContext(ctx)
|
||||
|
@ -28,7 +28,7 @@ func TestContext(t *testing.T) {
|
|||
}
|
||||
}()
|
||||
|
||||
response, err := client.Do(reqest)
|
||||
client.Do(reqest)
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue