This is an automated email from the ASF dual-hosted git repository.
gilbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new ba87be3 Fixed a link error on Windows caused by volume gid manager.
ba87be3 is described below
commit ba87be3fa0e3d5efeb8cac9aea5d6de4c1027772
Author: Qian Zhang <[email protected]>
AuthorDate: Sat Mar 2 17:29:05 2019 -0800
Fixed a link error on Windows caused by volume gid manager.
Review: https://reviews.apache.org/r/70085/
---
src/slave/main.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/slave/main.cpp b/src/slave/main.cpp
index 344aa66..b676be5 100644
--- a/src/slave/main.cpp
+++ b/src/slave/main.cpp
@@ -636,7 +636,9 @@ int main(int argc, char** argv)
delete containerizer.get();
+#ifndef __WINDOWS__
delete volumeGidManager;
+#endif // __WINDOWS__
delete secretResolver.get();