We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16521ee commit ee88833Copy full SHA for ee88833
store/postgres/src/copy.rs
@@ -1091,6 +1091,7 @@ impl Connection {
1091
W::Err(e) => {
1092
// This is a panic in the background task. We need to
1093
// cancel all other tasks and return the error
1094
+ error!(self.logger, "copy worker panicked: {}", e);
1095
self.cancel_workers(progress, workers).await;
1096
return Err(e);
1097
}
@@ -1115,6 +1116,7 @@ impl Connection {
1115
1116
return Ok(Status::Cancelled);
1117
1118
(Err(e), _) => {
1119
+ error!(self.logger, "copy worker had an error: {}", e);
1120
1121
1122
0 commit comments