mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

* clientv3: fix grpc-go(v1.27.0) incompatible changes to balancer/resolver. * vendor: upgrade gRPC Go to v1.24.0 Picking up some performance improvements and bug fixes. https://github.com/grpc/grpc-go/releases/tag/v1.24.0 Signed-off-by: Gyuho Lee <leegyuho@amazon.com> * vendor: update gRPC Go to v1.26.0 (#11522) * GO111MODULE=on go mod vendor * GO111MODULE=on go mod vendor go 1.14 Bump travis 2 Co-authored-by: EDDYCJY <313687982@qq.com> Co-authored-by: Gyuho Lee <leegyuho@amazon.com> Co-authored-by: Yuchen Zhou <yczhou@google.com>
35 lines
572 B
Go
35 lines
572 B
Go
// +build !appengine,!js,windows
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"syscall"
|
|
|
|
sequences "github.com/konsorten/go-windows-terminal-sequences"
|
|
)
|
|
|
|
func initTerminal(w io.Writer) {
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
sequences.EnableVirtualTerminalProcessing(syscall.Handle(v.Fd()), true)
|
|
}
|
|
}
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
var ret bool
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
var mode uint32
|
|
err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
|
|
ret = (err == nil)
|
|
default:
|
|
ret = false
|
|
}
|
|
if ret {
|
|
initTerminal(w)
|
|
}
|
|
return ret
|
|
}
|