Skip to content

Commit 914db69

Browse files
committed
test: add tastora tests for force inclusion and enable feature
1 parent aaae087 commit 914db69

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

pkg/config/config.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,9 @@ func (c *Config) Validate() error {
279279
}
280280

281281
if len(c.DA.GetForcedInclusionNamespace()) > 0 {
282-
// if err := validateNamespace(c.DA.GetForcedInclusionNamespace()); err != nil {
283-
// return fmt.Errorf("could not validate forced inclusion namespace (%s): %w", c.DA.GetForcedInclusionNamespace(), err)
284-
// }
285-
return fmt.Errorf("forced inclusion is not yet live")
286-
282+
if err := validateNamespace(c.DA.GetForcedInclusionNamespace()); err != nil {
283+
return fmt.Errorf("could not validate forced inclusion namespace (%s): %w", c.DA.GetForcedInclusionNamespace(), err)
284+
}
287285
}
288286

289287
// Validate lazy mode configuration

0 commit comments

Comments
 (0)