mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Support BUN_CONFIG_VERBOSE_FETCH in S3
This commit is contained in:
@@ -1459,7 +1459,7 @@ pub const AWSCredentials = struct {
|
||||
.follow,
|
||||
.{
|
||||
.http_proxy = if (proxy.len > 0) bun.URL.parse(proxy) else null,
|
||||
.verbose = .none,
|
||||
.verbose = task.vm.getVerboseFetch(),
|
||||
.reject_unauthorized = task.vm.getTLSRejectUnauthorized(),
|
||||
},
|
||||
);
|
||||
@@ -1579,7 +1579,7 @@ pub const AWSCredentials = struct {
|
||||
.follow,
|
||||
.{
|
||||
.http_proxy = if (owned_proxy.len > 0) bun.URL.parse(owned_proxy) else null,
|
||||
.verbose = .none,
|
||||
.verbose = task.vm.getVerboseFetch(),
|
||||
.signals = task.signals,
|
||||
.reject_unauthorized = task.vm.getTLSRejectUnauthorized(),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user