From bdae2338009bf49379d40592dfbd0e3f5b31fa07 Mon Sep 17 00:00:00 2001 From: Steve Pletcher Date: Mon, 15 Jun 2020 09:45:08 -0400 Subject: [PATCH] Add documentation for check_complete_on_run --- doc/configuration.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/configuration.rst b/doc/configuration.rst index 62852af12d..7dc9618e5e 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -364,7 +364,14 @@ check_unfulfilled_deps force_multiprocessing By default, luigi uses multiprocessing when *more than one* worker process is requested. When set to true, multiprocessing is used independent of the - the number of workers. + number of workers. + Defaults to false. + +check_complete_on_run + By default, luigi tasks are marked as 'done' when they finish running without + raising an error. When set to true, tasks will also verify that their outputs + exist when they finish running, and will fail immediately if the outputs are + missing. Defaults to false.