Skip to content

Commit

Permalink
Update files
Browse files Browse the repository at this point in the history
  • Loading branch information
raminqaf committed Aug 12, 2024
1 parent cc12d61 commit 2ed9db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kpops/components/streams_bootstrap_v3/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def version_validator(cls, version: str) -> str:
major, minor, patch, suffix, _ = pattern_match.groups()
major = int(major)

if major == 3:
if major != 3:
msg = f"When using the streams-bootstrap v3 component your version ('{version}') must be at least 3.0.0."
raise ValueError(msg)

Expand Down

0 comments on commit 2ed9db4

Please sign in to comment.