Skip to content

Commit f83ffc6

Browse files
authored
Merge pull request #4 from vishnuchalla/leftovers
Covering up some left overs
2 parents 83b6d38 + 9d5259e commit f83ffc6

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **BugZooka**
22
Broadcasting issues and errors.
3-
![Flow Diagram](assets/flow_diagram.png)
3+
![Flow Diagram](assets/flow_diagram.jpg)
44

55

66
## **Environment Setup**

assets/flow_diagram.png

-38.4 KB
Loading

src/prow_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def analyze_prow_artifacts(directory_path, job_name):
6161
if not os.path.isfile(cluster_operators_file_path):
6262
with open(build_file_path, 'r', errors='replace') as f:
6363
build_log_content = list(deque(f, maxlen=100))
64-
return ["Cluster installation issues, cloudn't even find clusteroperators.json file", "\n".join(build_log_content)], False
64+
return ["\n Somehow couldn't find clusteroperators.json file", "\n".join(build_log_content)], False
6565
cluster_operator_errors = get_cluster_operator_errors(directory_path)
6666
if len(cluster_operator_errors) == 0:
6767
orion_errors = scan_orion_xmls(directory_path)

0 commit comments

Comments
 (0)