Skip to content

Commit

Permalink
disable event_v2_translation
Browse files Browse the repository at this point in the history
  • Loading branch information
junkil-park committed Dec 2, 2024
1 parent ea0bbbd commit f77259e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ validator:
enable_storage_sharding: true
indexer_db_config:
enable_event: true
enable_event_v2_translation: false

fullnode:
# at most one VFN per validator, depending on numFullnodeGroups
Expand All @@ -28,6 +29,7 @@ fullnode:
enable_storage_sharding: true
indexer_db_config:
enable_event: true
enable_event_v2_translation: false

service:
validator:
Expand Down
4 changes: 4 additions & 0 deletions testsuite/forge/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ impl ForgeConfig {
["enable_storage_sharding"] = true.into();
helm_values["validator"]["config"]["indexer_db_config"]["enable_event"] = true.into();
helm_values["fullnode"]["config"]["indexer_db_config"]["enable_event"] = true.into();
helm_values["validator"]["config"]["indexer_db_config"]
["enable_event_v2_translation"] = false.into();
helm_values["fullnode"]["config"]["indexer_db_config"]["enable_event_v2_translation"] =
false.into();
}))
}

Expand Down

0 comments on commit f77259e

Please sign in to comment.