lib/mix/tasks/relay_{un,}follow.ex: Support status reply of Relay.{un,}follow

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-11-10 14:55:32 +01:00
parent 265c8c5209
commit 7fbfd2db96
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ defmodule Mix.Tasks.RelayFollow do
def run([target]) do
Mix.Task.run("app.start")
:ok = Relay.follow(target)
_status = Relay.follow(target)
# put this task to sleep to allow the genserver to push out the messages
:timer.sleep(500)

View File

@ -13,7 +13,7 @@ defmodule Mix.Tasks.RelayUnfollow do
def run([target]) do
Mix.Task.run("app.start")
:ok = Relay.unfollow(target)
_status = Relay.unfollow(target)
# put this task to sleep to allow the genserver to push out the messages
:timer.sleep(500)