Skip to content

Commit

Permalink
Fix Spock test
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Feb 1, 2023
1 parent 4e414ba commit d5fb38f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.mongodb.internal.connection

import com.mongodb.ClusterFixture
import com.mongodb.LoggerSettings
import com.mongodb.MongoCompressor
import com.mongodb.SubjectProvider
import com.mongodb.connection.ClusterId
Expand Down Expand Up @@ -49,7 +50,7 @@ class GSSAPIAuthenticatorSpecification extends Specification {
def credentialWithCache = new MongoCredentialWithCache(credential)
def streamFactory = new SocketStreamFactory(SocketSettings.builder().build(), getSslSettings())
def internalConnection = new InternalStreamConnectionFactory(SINGLE, streamFactory, credentialWithCache, null,
null, Collections.<MongoCompressor> emptyList(), null, getServerApi())
null, Collections.<MongoCompressor> emptyList(), LoggerSettings.builder().build(), null, getServerApi())
.create(new ServerId(new ClusterId(), getPrimary()))

when:
Expand Down

0 comments on commit d5fb38f

Please sign in to comment.