File tree 1 file changed +2
-2
lines changed
core/src/test/scala/akka/persistence/jdbc/query
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ object EventsByTagMigrationTest {
28
28
" jdbc-read-journal.refresh-interval" -> ConfigValueFactory .fromAnyRef(refreshInterval.toString))
29
29
}
30
30
31
- abstract class EventsByTagMigrationTest (config : String ) extends QueryTestSpec (config , migrationConfigOverride) {
31
+ abstract class EventsByTagMigrationTest (configS : String ) extends QueryTestSpec (configS , migrationConfigOverride) {
32
32
final val NoMsgTime : FiniteDuration = 100 .millis
33
33
34
34
val tagTableCfg = journalConfig.eventTagTableConfiguration
@@ -158,7 +158,7 @@ abstract class EventsByTagMigrationTest(config: String) extends QueryTestSpec(co
158
158
159
159
// override this, so we can reset the value.
160
160
def withRollingUpdateActorSystem (f : ActorSystem => Unit ): Unit = {
161
- val legacyTagKeyConfig = legacyTagKeyConfigOverride.foldLeft(ConfigFactory .load(config )) {
161
+ val legacyTagKeyConfig = legacyTagKeyConfigOverride.foldLeft(ConfigFactory .load(configS )) {
162
162
case (conf, (path, configValue)) =>
163
163
conf.withValue(path, configValue)
164
164
}
You can’t perform that action at this time.
0 commit comments