i think we're ready to try delivery in parallel

This commit is contained in:
Ted Unangst 2019-04-16 20:22:16 -04:00
parent 3dfe29724a
commit d542796944
1 changed files with 1 additions and 1 deletions

View File

@ -645,7 +645,7 @@ func honkworldwide(user *WhatAbout, honk *Honk) {
} }
} }
for a := range rcpts { for a := range rcpts {
deliverate(0, user.Name, a, msg) go deliverate(0, user.Name, a, msg)
} }
} }