Rename error type

This commit is contained in:
David Pedersen
2021-05-31 20:53:03 +02:00
parent d33be9683c
commit 19cbece1dc
3 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ where
self.svc
.oneshot(req)
.await
.map_err(|err| Error::Service(err.into()))
.map_err(|err| Error::Dynamic(err.into()))
}
}