Skip to content

Commit fec341c

Browse files
committed
Use OuraServiceUserRepositoryLegacy in the meantime
1 parent ab6ef4d commit fec341c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kafka-connect-oura-source/src/main/java/org/radarbase/connect/rest/oura/OuraRestSourceConnectorConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
import org.apache.kafka.common.config.ConfigException;
4545
import org.apache.kafka.connect.errors.ConnectException;
4646
import org.radarbase.connect.rest.oura.user.OuraServiceUserRepository;
47+
import org.radarbase.connect.rest.oura.user.OuraServiceUserRepositoryLegacy;
4748

4849
public class OuraRestSourceConnectorConfig extends AbstractConfig {
4950
public static final Pattern COLON_PATTERN = Pattern.compile(":");
@@ -192,7 +193,7 @@ public String toString() {
192193

193194
.define(OURA_USER_REPOSITORY_CONFIG,
194195
Type.CLASS,
195-
OuraServiceUserRepository.class,
196+
OuraServiceUserRepositoryLegacy.class,
196197
Importance.MEDIUM,
197198
OURA_USER_REPOSITORY_DOC,
198199
group,

0 commit comments

Comments
 (0)