Skip to content

Commit

Permalink
NiFi: cohort script cpu threads fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
vladd-bit committed Jul 2, 2024
1 parent 5df8f14 commit 7ef306f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nifi/user-scripts/cogstack_cohort_generate_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
if _arg[0] == "document_id_field_name":
DOCUMENT_ID_FIELD_NAME = _arg[1]
if _arg[0] == "cpu_threads":
CPU_THREADS = _arg[1]
CPU_THREADS = int(_arg[1])
if _arg[0] == "timeout":
TIMEOUT = _arg[1]
if _arg[0] == "output_folder_path":
Expand Down

0 comments on commit 7ef306f

Please sign in to comment.