Skip to content

Commit b332956

Browse files
Merge pull request #317 from oliveroneill/server-start-bug
Fix bug where server may fail to start
2 parents 078cc0e + 8f9e068 commit b332956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/HttpServerIO.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public class HttpServerIO {
7575
self.state = .starting
7676
let address = forceIPv4 ? listenAddressIPv4 : listenAddressIPv6
7777
self.socket = try Socket.tcpSocketForListen(port, forceIPv4, SOMAXCONN, address)
78+
self.state = .running
7879
DispatchQueue.global(qos: priority).async { [weak self] in
7980
guard let strongSelf = self else { return }
8081
guard strongSelf.operating else { return }
@@ -93,7 +94,6 @@ public class HttpServerIO {
9394
}
9495
strongSelf.stop()
9596
}
96-
self.state = .running
9797
}
9898

9999
public func stop() {

0 commit comments

Comments
 (0)