MINOR: Update system test dev version to 3.9.1 (#19534)

Ran system test based on 3.9 branch, but got the error: 
`Did expect to read 'Kafka version.*3.9.1.*SNAPSHOT' from
ducker@ducker04`. It's because the version should be `3.9.1` without
snapshot. Update the version.

Reviewers: TengYao Chi <frankvicky@apache.org>
This commit is contained in:
Luke Chen 2025-04-22 21:53:46 +09:00 committed by GitHub
parent 1f18da3112
commit dfa7a0d291
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ def get_version(node=None):
return DEV_BRANCH
DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("3.9.1-SNAPSHOT")
DEV_VERSION = KafkaVersion("3.9.1")
# This should match the LATEST_PRODUCTION version defined in MetadataVersion.java
LATEST_STABLE_METADATA_VERSION = "3.9-IV0"