Changed all goroutine functions to use '...AndForget' as the standard naming system

Этот коммит содержится в:
Reed Garmsen
2015-10-14 16:56:13 -07:00
родитель b5b233f3f0
Коммит 04bf527966
6 изменённых файлов: 25 добавлений и 25 удалений

Просмотреть файл

@@ -10,7 +10,7 @@ import (
"github.com/mattermost/platform/model"
)
func FireAndForgetSendAppleNotify(deviceId string, message string, badge int) {
func SendAppleNotifyAndForget(deviceId string, message string, badge int) {
go func() {
if err := SendAppleNotify(deviceId, message, badge); err != nil {
l4g.Error(fmt.Sprintf("%v %v", err.Message, err.DetailedError))