Skip to content

Commit e334fc7

Browse files
committed
SPARKC-609 extend await time for auth clusters
Apparently we already have a mechanism to wait for the auth clusters to be ready. As the Auth tests still fail occasionally this commit extends the await period.
1 parent 2b77a7b commit e334fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

connector/src/it/scala/com/datastax/spark/connector/SparkCassandraITFlatSpecBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ trait SparkCassandraITSpecBase
129129
*/
130130
//For Auth Clusters we have to wait for the default User before a connection will work
131131
if (sparkConf.contains(DefaultAuthConfFactory.PasswordParam.name)) {
132-
eventually(timeout(Span(60, Seconds))) {
132+
eventually(timeout(Span(120, Seconds))) {
133133
CassandraConnector(sparkConf).withSessionDo(session => assert(session != null))
134134
}
135135
}

0 commit comments

Comments
 (0)