Compare commits

...

2 Commits
v3.2 ... v2.6.0

Author SHA1 Message Date
yinwusong
4471b054bc fix: 2.6 版本批量迁移bug https://github.com/didi/KnowStreaming/issues/785 2022-12-23 15:53:37 +08:00
Peng
7049e9429d Update README.md 2022-08-28 06:13:39 +08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@
想跟各个大佬交流Kafka Es 等中间件/大数据相关技术请 加微信进群。
微信加群:添加<font color=red>mike_zhangliang</font><font color=red>danke-xie</font>的微信号备注Logi加群或关注公众号 云原生可观测性 回复 "Logi加群"
微信加群:添加<font color=red>mike_zhangliang</font><font color=red>PenceXie</font>的微信号备注Logi加群或关注公众号 云原生可观测性 回复 "Logi加群"
## 4 知识星球

View File

@@ -173,8 +173,8 @@ class DataMigrationFormTable extends React.Component<IFormTableProps> {
const throttleArr = [] as any[];
infoData.beginTime = +moment(infoData.beginTime).format('x');
Object.getOwnPropertyNames(tableResult).forEach(key => {
const throttleIndex = Number(key.slice(0, 1));
const throttleKey = key.slice(2);
const throttleIndex = Number(key.split("-")[0]);
const throttleKey = key.split("-")[1];
const throttleName = tableResult[key];
if (!throttleArr[throttleIndex]) {
throttleArr[throttleIndex] = {};