Skip to content

Commit 68c6afe

Browse files
committed
issue/940 - check ninetoothed ops build result
1 parent 6f8a443 commit 68c6afe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/build_ntops.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ def _find_and_build_ops():
2323

2424
futures.append(executor.submit(_build, ninetoothed_path))
2525

26-
concurrent.futures.as_completed(futures)
26+
for future in concurrent.futures.as_completed(futures):
27+
future.result()
2728

2829

2930
def _build(ninetoothed_path):

0 commit comments

Comments
 (0)