Skip to content

Commit

Permalink
NETOBSERV-1474: change dup mode to use list as the default
Browse files Browse the repository at this point in the history
Signed-off-by: Mohamed Mahmoud <mmahmoud@redhat.com>
  • Loading branch information
msherif1234 committed Mar 12, 2024
1 parent efc42ca commit 3636143
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions controllers/consoleplugin/consoleplugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ func TestConfigMapContent(t *testing.T) {
assert.NotEmpty(config.Frontend.Columns)
assert.NotEmpty(config.Frontend.Filters)
assert.Equal(config.Frontend.Sampling, 1)
assert.Equal(config.Frontend.Deduper.Mark, true)
assert.Equal(config.Frontend.Deduper.Merge, false)
assert.Equal(config.Frontend.Deduper.Mark, false)
assert.Equal(config.Frontend.Deduper.Merge, true)
}

func TestConfigMapError(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions controllers/ebpf/agent_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const (
const (
EnvDedupeJustMark = "DEDUPER_JUST_MARK"
EnvDedupeMerge = "DEDUPER_MERGE"
DedupeJustMarkDefault = "true"
DedupeMergeDefault = "false"
DedupeJustMarkDefault = "false"
DedupeMergeDefault = "true"
)

type reconcileAction int
Expand Down

0 comments on commit 3636143

Please sign in to comment.