Skip to content

Commit e6f1bb6

Browse files
committed
fixed issue related to PR envoy#110
envoy#110
1 parent 8469f2c commit e6f1bb6

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
xcuserdata
22
.build
3+
.DS_Store

Sources/Transport.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ public final class Transport {
134134
// (usually means that this function was called by resumeReading)
135135
return
136136
}
137-
fatalError("Failed to read, errno=\(errno), message=\(lastErrorDescription())")
137+
return
138138
} catch {
139-
fatalError("Failed to read")
139+
return
140140
}
141141
guard data.count > 0 else {
142142
closedByPeer()

0 commit comments

Comments
 (0)