We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b35791b commit d00ac68Copy full SHA for d00ac68
redisbench_admin/run_local/profile_local.py
@@ -29,8 +29,9 @@ def local_profilers_print_artifacts_table(profilers_artifacts_matrix):
29
artifact = row[2]
30
local_file = row[3]
31
s3_link = row[4]
32
- if len(s3_link) > 0:
33
- use_local_file = False
+ if s3_link is not None:
+ if len(s3_link) > 0:
34
+ use_local_file = False
35
36
if test_case not in test_cases:
37
test_cases.append(test_case)
0 commit comments