-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Description
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version
)?
go1.9 darwin/amd64, but cross-compiling for PC/CYGWIN
Does this issue reproduce with the latest release?
Yes, issue is only on go1.9 and Windows, go1.8 is fine on all platforms
What operating system and processor architecture are you using (go env
)?
Windows under CYGWIN. (Go compiler is not installed on target machines.)
What did you do?
curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=pubmed&id=26422376&version=2.0" |
go run pipehangs.go
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
Source code of pipehangs.go is inserted here:
package main
import (
"fmt"
"io/ioutil"
"os"
)
func main() {
str, err := ioutil.ReadAll(os.Stdin)
fmt.Fprintf(os.Stderr, "n: %d\n", len(str))
if err != nil {
fmt.Fprintf(os.Stderr, "err: %s\n", err)
}
}
File attached, with .txt suffix added to get past data format test:
What did you expect to see?
n: 3910
What did you see instead?
Program hangs.
It's fine if you pipe a file:
cat testfile.txt | go run pipehangs.go
or redirect stdin:
go run pipehangs.go < testfile.txt
Only reading a network result under Windows and go1.9 causes it to hang.