mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 03:42:07 +08:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4471b054bc | ||
|
|
7049e9429d |
@@ -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 知识星球
|
||||
|
||||
|
||||
@@ -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] = {};
|
||||
|
||||
Reference in New Issue
Block a user