From 5291e6b6b5118e08c6bcd38e559029c8b800003e Mon Sep 17 00:00:00 2001 From: Janusz Kaczmarek Date: Tue, 30 Apr 2024 10:18:12 +0000 Subject: [PATCH] Bug 36730: (Bug 35428 follow-up) po files (sometimes) fail to update Under some circumstances (e.g. non-standard disk latency) po files fail to be generated. The output from the gulp po:update --lang xx-XX task is than like this: [10:01:39] 'po_update_staff' errored after 6.41 s [10:01:39] Error: ENOENT: no such file or directory, open '/tmp/koha-5WCc9s/Koha-staff-prog.pot' This is due to the time dependencies inside the function flush (callback) (in the function xgettext) in gulpfile.js. It happens that the /tmp/koha-NNNNNN folder gets deleted before the asynchronous callback function called by fs.readFile is completed. The callback should copy the content of the .pot file from /tmp/koha- to its final destination, while, in parallel in fact, the folder inside /tmp is being removed. This creates a race condition. Test plan: ========== Hard to reproduce. But the race condition found in the code should be obvious. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer (cherry picked from commit 67b3cbd438f0cee378cfa5236f2673ab6ea32f33) Signed-off-by: Fridolin Somers --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 2ff7ff0cf7..7ec5df077f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -385,8 +385,8 @@ function xgettext (cmd, filename) { file.path = path.join(file.base, filename); file.contents = data; callback(null, file); + fs.rmSync(folder, { recursive: true }); }); - fs.rmSync(folder, { recursive: true }); }); }); }) -- 2.20.1