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: [
{
replication: 1,
partitions: 1,
replication: 2,
partitions: 10,
topic_name: ''
}
]
@ -116,8 +116,8 @@ export default {
// topic
addTopic(data) {
data.push({
replication: 1,
partitions: 1,
replication: 2,
partitions: 10,
topic_name: ''
})
},