You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let span = info_span!("Deployment::upload_files");
89
89
span.set_parent(Context::current());
90
90
let _guard = span.enter();
91
91
92
-
let file_stream = file.into_vec().await.unwrap();
93
-
94
92
// TODO: Read file stream, extract zip file (contains multiple files), upload each file to s3 at the correct relevant path relative to deployment.deployment_id + '/'
95
93
96
-
let zip = ZipFileReader::new(file_stream).await.unwrap();
94
+
let zip = ZipFileReader::new(file).await.unwrap();
97
95
98
96
for index in0..zip.file().entries().len(){
99
97
let file = zip.file().entries().get(index).unwrap();
0 commit comments