Skip to content

Commit

Permalink
MINOR: code cleanup
Browse files Browse the repository at this point in the history
Follow up to apache#15199

Remove unnecessary import and add new member variable.
  • Loading branch information
mjsax committed Jan 17, 2024
1 parent e563aad commit c5e984a
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -71,7 +71,6 @@
import static org.apache.kafka.common.config.ConfigDef.Range.between;
import static org.apache.kafka.common.config.ConfigDef.ValidString.in;
import static org.apache.kafka.common.config.ConfigDef.parseType;
import static org.apache.kafka.streams.internals.UpgradeFromValues.UPGRADE_FROM_35;

/**
* Configuration for a {@link KafkaStreams} instance.
Expand Down Expand Up @@ -408,6 +407,12 @@ public class StreamsConfig extends AbstractConfig {
@SuppressWarnings("WeakerAccess")
public static final String UPGRADE_FROM_34 = UpgradeFromValues.UPGRADE_FROM_34.toString();

/**
* Config value for parameter {@link #UPGRADE_FROM_CONFIG "upgrade.from"} for upgrading an application from version {@code 3.5.x}.
*/
@SuppressWarnings("WeakerAccess")
public static final String UPGRADE_FROM_35 = UpgradeFromValues.UPGRADE_FROM_35.toString();

/**
* Config value for parameter {@link #PROCESSING_GUARANTEE_CONFIG "processing.guarantee"} for at-least-once processing guarantees.
*/
Expand Down

0 comments on commit c5e984a

Please sign in to comment.