Skip to content

Commit

Permalink
feat: defaults monopod to enabled for builds. (#13873)
Browse files Browse the repository at this point in the history
  • Loading branch information
tryangul committed Sep 9, 2024
1 parent b7f1ed0 commit 3893558
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
4 changes: 2 additions & 2 deletions airbyte-featureflag/src/main/kotlin/FlagDefinitions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ object LogStateMsgs : Temporary<Boolean>(key = "platform.log-state-msgs", defaul

object EnableMappers : Temporary<Boolean>(key = "platform.enable-mappers", default = false)

object ReplicationMonoPod : Temporary<Boolean>(key = "replication-mono-pod", default = false)
object ReplicationMonoPod : Temporary<Boolean>(key = "replication-mono-pod", default = true)

object ReplicationBufferOverride : Temporary<Int>(key = "platform.replication-buffer-override", default = 0)

object ReplicationMonoPodMemoryTolerance : Temporary<Int>(key = "platform.replication-mono-pod-memory-tolerance-gb", default = 6)
object ReplicationMonoPodMemoryTolerance : Temporary<Int>(key = "platform.replication-mono-pod-memory-tolerance-gb", default = 256)

object DisableAuthHeaderReplacement : Temporary<Boolean>(key = "platform.disable-auth-header-replacement", default = false)

Expand Down
11 changes: 0 additions & 11 deletions flags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,5 @@ flags:
- "1bdcfb61-219b-4290-be4f-12f9ac5461be"
- "3851861d-ac0b-440c-bd60-408cf9e7fc0e"
serve: true
- name: replication-mono-pod
serve: false
# Override used in order to run an acceptance test
context:
- type: workspace
include:
- 3d2985a0-a412-45f4-9124-e15800b739be
serve: true
- name: platform.replication-mono-pod-memory-tolerance-gb
# high enough to let everything through — gated by replication-mono-pod
serve: 32
- name: platform.fail-sync-on-invalid-checksum
serve: false
4 changes: 0 additions & 4 deletions tools/bin/acceptance-test-flags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ flags:
- 1bdcfb61-219b-4290-be4f-12f9ac5461be
- 3851861d-ac0b-440c-bd60-408cf9e7fc0e
serve: true
- name: replication-mono-pod
serve: true
- name: platform.replication-mono-pod-memory-tolerance-gb
serve: 32 # high enough to let everything through
- name: platform.use-workload-output-doc-store
serve: false
context:
Expand Down

0 comments on commit 3893558

Please sign in to comment.