Merge pull request #35631 from Microsoft/jjh/heightwidth

Windows: Fix width/height swap
This commit is contained in:
Yong Tang 2017-11-28 21:02:46 -08:00 committed by GitHub
commit 29708da907
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -934,7 +934,7 @@ func (c *client) ResizeTerminal(_ context.Context, containerID, processID string
"width": width,
"pid": p.pid,
}).Debug("resizing")
return p.hcsProcess.ResizeConsole(uint16(height), uint16(width))
return p.hcsProcess.ResizeConsole(uint16(width), uint16(height))
}
func (c *client) CloseStdin(_ context.Context, containerID, processID string) error {