You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
939 B
36 lines
939 B
From 55d9d6dfb731d2f1c8c940fb8a7ea0af6c498c4c Mon Sep 17 00:00:00 2001
|
|
From: Michal Sekletar <msekleta@redhat.com>
|
|
Date: Mon, 9 Sep 2019 14:38:35 +0200
|
|
Subject: [PATCH] path: stop watching path specs once we triggered the target
|
|
unit
|
|
|
|
We start watching them again once we get a notification that triggered
|
|
unit entered inactive or failed state.
|
|
|
|
Fixes: #10503
|
|
(cherry picked from commit 8fca6944c2ee20c63d62154c8badddc77170b176)
|
|
|
|
Resolves: #1763161
|
|
---
|
|
src/core/path.c | 6 ++----
|
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/src/core/path.c b/src/core/path.c
|
|
index 68b13b610a..5ef178a46b 100644
|
|
--- a/src/core/path.c
|
|
+++ b/src/core/path.c
|
|
@@ -478,11 +478,9 @@ static void path_enter_running(Path *p) {
|
|
|
|
p->inotify_triggered = false;
|
|
|
|
- r = path_watch(p);
|
|
- if (r < 0)
|
|
- goto fail;
|
|
-
|
|
path_set_state(p, PATH_RUNNING);
|
|
+ path_unwatch(p);
|
|
+
|
|
return;
|
|
|
|
fail:
|