fix: kafka默认值调整

catl
TangShan_DD 2024-11-11 14:13:54 +08:00
parent fdc904ef96
commit d21412c19a
1 changed files with 4 additions and 4 deletions

View File

@ -81,8 +81,8 @@ export default {
}, },
topics: [ topics: [
{ {
replication: 1, replication: 2,
partitions: 1, partitions: 10,
topic_name: '' topic_name: ''
} }
] ]
@ -116,8 +116,8 @@ export default {
// topic // topic
addTopic(data) { addTopic(data) {
data.push({ data.push({
replication: 1, replication: 2,
partitions: 1, partitions: 10,
topic_name: '' topic_name: ''
}) })
}, },