abiosoft / abiosoft/ishell

Wrong output from shell.Println when receiving from a goroutine

Aperta
#19 11 commenti 1 reazione 0 assegnatari Vedi su GitHub
in progress
Lingua principale
Go
Stelle
1.8k
Fork
213
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

I am trying to print some output from a channel to the shell. When receiving from a goroutine it prints without a newline and does not give the prompt back. Example:
```go
package main

import (
"time"
"github.com/abiosoft/ishell"
)

func feed(c chan string) {
for i := 0; i<3; i++ {
c <- "Feedback"
time.Sleep(time.Second)
}
}

func main(){
shell := ishell.New()
c := make(chan string)

// listen
go func() {
for msg := range(c) {
shell.Println(msg)
}
}()

// this does output correctly
//feed(c)
// this does not
go feed(c)

shell.Start()
}
```
`go feed(c)` outputs:
```bash
>>> Feedback
Feedback
Feedback
```
To get the prompt back you have to type a letter

`feed(c)` outputs correctly:
```bash
Feedback
Feedback
Feedback
>>>
```

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.