Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion config/kraft/broker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ s3.bucket=ko3
#s3.path.style=true

# The file path of delta WAL in block device
# DEPRECATED TIPS: This property will be replaced by S3Url later in the future version. Reference the official document and use S3Url to start AutoMQ is recommended.
s3.wal.path=/tmp/kraft-broker-logs/s3wal

# The maximum size of delta WAL in block device, default 2GB
Expand Down
1 change: 0 additions & 1 deletion config/kraft/server.properties
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ s3.bucket=ko3
#s3.path.style=true

# The file path of delta WAL in block device
# DEPRECATED TIPS: This property will be replaced by S3Url later in the future version. Reference the official document and use S3Url to start AutoMQ is recommended.
s3.wal.path=/tmp/kraft-combined-logs/s3wal

# The maximum size of delta WAL in block device, default 2GB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public static S3Url parse(String s3Url) throws IllegalArgumentException {
clusterId = value;
break;
case "s3-path-style":
s3PathStyle = Boolean.valueOf(value);
s3PathStyle = Boolean.parseBoolean(value);
break;
default:
throw new IllegalArgumentException("Unknown parameter: " + key);
Expand Down