Skip to content

Commit

Permalink
Fix thread labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Jan 9, 2023
1 parent 79135fa commit bb6f15f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cs_misp_import/indicator_family.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def retrieve_family_events(misp_client: ExpandedPyMISP,

log_util.info("Retrieved %i CrowdStrike indicator malware family events from MISP.", len(families))

with concurrent.futures.ThreadPoolExecutor() as executor:
with concurrent.futures.ThreadPoolExecutor(misp_client.thread_count, thread_name_prefix="thread") as executor:
futures = {
executor.submit(convert_event, family, log_util) for family in families
}
Expand Down

0 comments on commit bb6f15f

Please sign in to comment.