marketCloseEmails: "every hour" => "every 1 hours"

This commit is contained in:
mantikoros 2022-02-17 12:50:47 -06:00
parent 1036c2df0d
commit 6701bfca0d

View File

@ -6,7 +6,7 @@ import { getPrivateUser, getUserByUsername } from './utils'
import { sendMarketCloseEmail } from './emails'
export const marketCloseEmails = functions.pubsub
.schedule('every hour')
.schedule('every 1 hours')
.onRun(async () => {
await sendMarketCloseEmails()
})