Skip to content

Commit

Permalink
루틴 액션을 실행하는 중 오류가 발생하면 다음 액션을 이동하지 않고 pause 상태로 이동하게 변경 (#1074)
Browse files Browse the repository at this point in the history
### Description
- 루틴 액션을 실행하는 중 오류가 발생하면 다음 액션을 이동하지 않고 pause 상태로 이동하게 변경
  • Loading branch information
jayce1116 authored Aug 1, 2023
1 parent ecd29c4 commit fd61800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private extension RoutineExecuter {
let completion: ((StreamDataState) -> Void) = { [weak self] result in
log.debug(result)
if case .error = result {
self?.doNextAction()
self?.pause()
}
}

Expand Down

0 comments on commit fd61800

Please sign in to comment.