Skip to content

Commit e57c81b

Browse files
committed
close zip file before process exit
1 parent 8a7916d commit e57c81b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This is a matrix of confirmed test targets. Please PR environments that are also
7272
<td>Microsoft</td><td>ARO</td><td>?</td><td>No</td><td>Unknown</td><td></td>
7373
</tr>
7474
<tr>
75-
<td>AWS</td><td>EKS</td><td>?</td><td>No</td><td>Unknown</td><td></td>
75+
<td>AWS</td><td>EKS</td><td>1.21</td><td>Yes</td><td>No crictl client in the default AMI means that the metadata won't be captured</td><td></td>
7676
</tr>
7777
<tr>
7878
<td>AWS</td><td>ROSA</td><td>?</td><td>No</td><td>Unknown</td><td></td>

charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
replicaCount: 1
22

33
image:
4-
repository: quay.io/number9/core-dump-handler:v2.0.10
4+
repository: quay.io/number9/core-dump-handler:v2.0.11
55
pullPolicy: IfNotPresent
66

77
imagePullSecrets: []

core-dump-composer/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ fn main() -> Result<(), anyhow::Error> {
213213
Ok(v) => v,
214214
Err(e) => {
215215
error!("failed to execute crictl pods {}", e);
216+
zip.finish()?;
216217
process::exit(1)
217218
}
218219
};

0 commit comments

Comments
 (0)