Update fdbrpc/FlowTransport.actor.cpp

Co-Authored-By: Alex Miller <35046903+alexmiller-apple@users.noreply.github.com>
This commit is contained in:
Evan Tschannen 2020-03-04 16:13:59 -08:00 committed by GitHub
parent 7cbabca124
commit 976c2fc7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -988,7 +988,7 @@ ACTOR static Future<Void> connectionIncoming( TransportData* self, Reference<ICo
ACTOR static Future<Void> listen( TransportData* self, NetworkAddress listenAddr ) {
state ActorCollectionNoErrors incoming; // Actors monitoring incoming connections that haven't yet been associated with a peer
state Reference<IListener> listener = INetworkConnections::net()->listen( listenAddr );
state int64_t connectionCount = 0;
state uint64_t connectionCount = 0;
try {
loop {
Reference<IConnection> conn = wait( listener->accept() );