mirror of https://github.com/docker/cli.git
Merge pull request #1090 from zkry/1089-quiet-stream-output-fix
Add String method so quieted output displays properly
This commit is contained in:
commit
daf021fe60
|
@ -122,6 +122,10 @@ func (bw *bufferedWriter) flushBuffer() {
|
||||||
bw.mu.Unlock()
|
bw.mu.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (bw *bufferedWriter) String() string {
|
||||||
|
return fmt.Sprintf("%s", bw.Writer)
|
||||||
|
}
|
||||||
|
|
||||||
func getBuildSharedKey(dir string) (string, error) {
|
func getBuildSharedKey(dir string) (string, error) {
|
||||||
// build session is hash of build dir with node based randomness
|
// build session is hash of build dir with node based randomness
|
||||||
s := sha256.Sum256([]byte(fmt.Sprintf("%s:%s", tryNodeIdentifier(), dir)))
|
s := sha256.Sum256([]byte(fmt.Sprintf("%s:%s", tryNodeIdentifier(), dir)))
|
||||||
|
|
Loading…
Reference in New Issue