EventIndex: Use the sleep method from our utils.

This commit is contained in:
Damir Jelić 2019-11-26 13:15:55 +01:00
parent f324f676d3
commit b7b66cfd9a

View File

@ -16,6 +16,7 @@ limitations under the License.
import PlatformPeg from "../PlatformPeg"; import PlatformPeg from "../PlatformPeg";
import {MatrixClientPeg} from "../MatrixClientPeg"; import {MatrixClientPeg} from "../MatrixClientPeg";
import {sleep} from "../utils/promise";
/* /*
* Event indexing class that wraps the platform specific event indexing. * Event indexing class that wraps the platform specific event indexing.
@ -180,12 +181,6 @@ export default class EventIndex {
} }
async crawlerFunc() { async crawlerFunc() {
// TODO either put this in a better place or find a library provided
// method that does this.
const sleep = async (ms) => {
return new Promise(resolve => setTimeout(resolve, ms));
};
let cancelled = false; let cancelled = false;
console.log("EventIndex: Started crawler function"); console.log("EventIndex: Started crawler function");