25 lines
625 B
Diff
25 lines
625 B
Diff
From 2f96a652d2d346be3c69901b4c9177a41569553a Mon Sep 17 00:00:00 2001
|
|
From: Ziyang Zhou <ziyang.zhou@outlook.com>
|
|
Date: Sat, 6 Aug 2022 10:19:11 +0800
|
|
Subject: [PATCH] ignore project quota error
|
|
|
|
---
|
|
Utils.cpp | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/Utils.cpp b/Utils.cpp
|
|
index e8049eda..27d70845 100644
|
|
--- a/Utils.cpp
|
|
+++ b/Utils.cpp
|
|
@@ -243,7 +243,6 @@ int SetQuotaProjectId(const std::string& path, long projectId) {
|
|
ret = ioctl(fd, FS_IOC_FSSETXATTR, &fsx);
|
|
if (ret == -1) {
|
|
PLOG(ERROR) << "Failed to set project id on " << path;
|
|
- return ret;
|
|
}
|
|
return 0;
|
|
}
|
|
--
|
|
2.34.1
|
|
|