forked from docker/for-mac
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Out of disk space when writing to qcow2 - Hyperkit MTU assertion - Too many connections in Vpnkit Signed-off-by: Magnus Skjegstad <[email protected]>
- Loading branch information
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"in_file": "docker-system.log", | ||
"matches": ["Assertion failed: .remaining == 0 .. i < n., function vmn_read" ], | ||
"description": "This error suggests that a Hyperkit assertion was triggered by an ethernet frame that was too big for the buffer. Upgrading to the latest release should fix the issue.", | ||
"link_to_issues": [ [ "docker/for-mac", 1228 ] ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"in_file": "docker-system.log", | ||
"matches": ["ftruncate. No space left on device in ftruncate" ], | ||
"description": "[INVESTIGATE THE ISSUE]", | ||
"link_to_issues": [ [ "docker/for-mac", 1365 ] ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"in_file": "docker-system.log", | ||
"matches": ["exceeded maximum number of forwarded connections" ], | ||
"description": "This error suggests that the maximum number of simultaneous connections has been reached. Increasing the value in the database key `com.docker.driver.amd64-linux/slirp/max-connections` as described in https://github.com/docker/for-mac/issues/1009#issuecomment-264874864 may help.", | ||
"link_to_issues": [ [ "docker/for-mac", 1009 ] ] | ||
} |