commit | 754d4c052aa297ac5923d31924c882196ba0d0b2 | [log] [tgz] |
---|---|---|
author | Paul Marks <pmarks@google.com> | Mon Aug 31 13:30:22 2015 -0700 |
committer | Brad Fitzpatrick <bradfitz@golang.org> | Mon Aug 31 21:36:04 2015 +0000 |
tree | 92d248c7e84e4bc4e0779fd04ecc76660157664d | |
parent | 8d478e845cf56045fe805b51ddabf74f93f0290a [diff] |
net: Increase the acceptable delay in TestDialerDualstack This may fix the flakiness on Windows/x64, assuming that it's actually due to a variance in the connection time which slightly exceeds 100ms. 150ms + 95ms = 245ms, which is still low enough to avoid triggering Happy Eyeballs (300ms) on non-Windows platforms. Updates #12309 Change-Id: I816a36fbc0a3e5c90e3cf1b75a134faf0d91557c Reviewed-on: https://go-review.googlesource.com/14120 Run-TryBot: Paul Marks <pmarks@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
For documentation about how to install and use Go, visit https://golang.org/ or load doc/install-source.html in your web browser.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Please report issues here: https://golang.org/issue/new
Go is the work of hundreds of contributors. We appreciate your help!
To contribute, please read the contribution guidelines: https://golang.org/doc/contribute.html
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
If you have just untarred a binary Go distribution, you need to set the environment variable $GOROOT to the full path of the go directory (the one containing this file). You can omit the variable if you unpack it into /usr/local/go, or if you rebuild from sources by running all.bash (see doc/install-source.html). You should also add the Go binary directory $GOROOT/bin to your shell's path.
For example, if you extracted the tar file into $HOME/go, you might put the following in your .profile:
export GOROOT=$HOME/go export PATH=$PATH:$GOROOT/bin
See https://golang.org/doc/install or doc/install.html for more details.