add fail state

add panic/edge cases
add marking channels as completed/failed
This commit is contained in:
Niko Storni 2018-04-27 09:48:34 -04:00
parent c0be626ef2
commit e600fb59fa
No known key found for this signature in database
GPG key ID: F37FE63398800368
2 changed files with 23 additions and 2 deletions

View file

@ -15,6 +15,7 @@ const (
StatusQueued = "queued" // in sync queue. will be synced soon
StatusSyncing = "syncing" // syncing now
StatusSynced = "synced" // done
StatusFailed = "failed"
)
var SyncStatuses = []string{StatusPending, StatusQueued, StatusSyncing, StatusSynced}
var SyncStatuses = []string{StatusPending, StatusQueued, StatusSyncing, StatusSynced, StatusFailed}

View file

@ -157,7 +157,7 @@ func selfSync(cmd *cobra.Command, args []string) {
if err != nil {
msg := fmt.Sprintf("Failed aquiring sync rights for channel %s: %v", lbryChannelName, err)
util.SendToSlack(msg)
log.Debugln(msg)
log.Error(msg)
continue
}
msg := fmt.Sprintf("Syncing %s to LBRY! (iteration %d)", lbryChannelName, loops)
@ -180,8 +180,28 @@ func selfSync(cmd *cobra.Command, args []string) {
if err != nil {
log.Error(errors.FullTrace(err))
util.SendToSlack(errors.FullTrace(err))
//mark video as failed
err := setChannelSyncStatus(authToken, channelID, StatusFailed)
if err != nil {
msg := fmt.Sprintf("Failed setting failed state for channel %s: %v", lbryChannelName, err)
util.SendToSlack(msg)
util.SendToSlack("@Nikooo777 this requires manual intervention! Panicing...")
log.Error(msg)
panic(msg)
}
break
}
//mark video as synced
err = setChannelSyncStatus(authToken, channelID, StatusSynced)
if err != nil {
msg := fmt.Sprintf("Failed setting synced state for channel %s: %v", lbryChannelName, err)
util.SendToSlack(msg)
util.SendToSlack("@Nikooo777 this requires manual intervention! Panicing...")
log.Error(msg)
//this error is very bad. it requires manual intervention
panic(msg)
continue
}
if limit != 0 && loops >= limit {
msg := fmt.Sprintf("limit of %d reached! Stopping", limit)