Add one missing error handling

This commit is contained in:
Tatsuyuki Ishi 2019-07-15 22:39:04 +09:00 committed by mitchmindtree
parent 3cce3e43d9
commit 508e7d8ccf
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ fn stream_worker(rx: TriggerReceiver,
continue;
},
Err(err) => {
// TODO: signal errors
error_callback(err.into());
continue;
}
};