From c80b3f1b339300a5debc651ef8157ffc92bd6156 Mon Sep 17 00:00:00 2001 From: Burlen Loring Date: Mon, 28 Aug 2023 11:58:36 -0700 Subject: [PATCH] cf_writer fix let threaded_algorithm process command line was forwarding to teca_algorithm which resulted in none of the threading related properties being picked up from the command line. --- io/teca_cf_writer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/teca_cf_writer.cxx b/io/teca_cf_writer.cxx index e5f3878b9..3141a0ba3 100644 --- a/io/teca_cf_writer.cxx +++ b/io/teca_cf_writer.cxx @@ -147,7 +147,7 @@ void teca_cf_writer::get_properties_description( "the list of non-geometric arrays to write") ; - this->teca_algorithm::get_properties_description(prefix, opts); + this->teca_threaded_algorithm::get_properties_description(prefix, opts); global_opts.add(opts); }