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 b1eb2cf commit 3c050aaCopy full SHA for 3c050aa
nexus/src/db/datastore/project.rs
@@ -114,7 +114,7 @@ impl DataStore {
114
.map_err(|e| public_error_from_diesel_pool(e, ErrorHandler::Server))?;
115
if disk_found.is_some() {
116
return Err(Error::InvalidRequest {
117
- message: "project to be deleted contains an disk".to_string(),
+ message: "project to be deleted contains a disk".to_string(),
118
});
119
}
120
@@ -223,7 +223,8 @@ impl DataStore {
223
224
if ip_pool_found.is_some() {
225
226
- message: "project to be deleted contains a ip pool".to_string(),
+ message: "project to be deleted contains an ip pool"
227
+ .to_string(),
228
229
230
0 commit comments