From 7488eaebd6147def19e8a659f28eeb5df07efce8 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Tue, 10 Apr 2018 20:15:04 -0700 Subject: [PATCH] travis: don't print 'waiting for mastodon' so frequently --- bin/wait-for-mastodon-to-start.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/wait-for-mastodon-to-start.js b/bin/wait-for-mastodon-to-start.js index 9dae6257..7fff39a0 100644 --- a/bin/wait-for-mastodon-to-start.js +++ b/bin/wait-for-mastodon-to-start.js @@ -9,7 +9,7 @@ export async function waitForMastodonUiToStart () { } } catch (err) { console.log('Waiting for Mastodon UI to start up...') - await new Promise(resolve => setTimeout(resolve, 1000)) + await new Promise(resolve => setTimeout(resolve, 5000)) } } console.log('Mastodon UI started up') @@ -24,7 +24,7 @@ export async function waitForMastodonApiToStart () { } } catch (err) { console.log('Waiting for Mastodon API to start up...') - await new Promise(resolve => setTimeout(resolve, 1000)) + await new Promise(resolve => setTimeout(resolve, 5000)) } } console.log('Mastodon API started up')