Skip to content

Commit

Permalink
disable new backfill endpoints by default
Browse files Browse the repository at this point in the history
  • Loading branch information
yatharthranjan committed Oct 30, 2024
1 parent c3bca02 commit f986d86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/kotlin/org/radarbase/gateway/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ data class BackfillConfig(
val userMetricsEnabled: Boolean = true,
val moveIQEnabled: Boolean = true,
val respirationEnabled: Boolean = true,
val bloodPressureEnabled: Boolean = true,
val healthSnapshotEnabled: Boolean = true,
val heartRateVariabilityEnabled: Boolean = true,
val bloodPressureEnabled: Boolean = false,
val healthSnapshotEnabled: Boolean = false,
val heartRateVariabilityEnabled: Boolean = false,
)

data class RedisConfig(
Expand Down

0 comments on commit f986d86

Please sign in to comment.