Unverified Commit d05488e0 authored by Lijiaoa's avatar Lijiaoa Committed by GitHub
Browse files

fix issue 2148 (#2163)

parent fe533e3b
...@@ -154,7 +154,7 @@ class LogDrawer extends React.Component<LogDrawerProps, LogDrawerState> { ...@@ -154,7 +154,7 @@ class LogDrawer extends React.Component<LogDrawerProps, LogDrawerState> {
}); });
Promise.all([dispatcherPromise, nniManagerPromise]).then(() => { Promise.all([dispatcherPromise, nniManagerPromise]).then(() => {
this.setState({ isLoading: false }); this.setState({ isLoading: false });
this.timerId = window.setTimeout(this.refresh, 300); this.timerId = window.setTimeout(this.refresh, 10000);
}); });
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment