File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ func TestNewConnector(t *testing.T) {
89
89
WithHTTPPath (httpPath ),
90
90
)
91
91
expectedCloudFetchConfig := config.CloudFetchConfig {
92
- UseCloudFetch : false ,
92
+ UseCloudFetch : true ,
93
93
MaxDownloadThreads : 10 ,
94
94
MaxFilesInMemory : 10 ,
95
95
MinTimeToExpiry : 0 * time .Second ,
@@ -130,7 +130,7 @@ func TestNewConnector(t *testing.T) {
130
130
WithRetries (- 1 , 0 , 0 ),
131
131
)
132
132
expectedCloudFetchConfig := config.CloudFetchConfig {
133
- UseCloudFetch : false ,
133
+ UseCloudFetch : true ,
134
134
MaxDownloadThreads : 10 ,
135
135
MaxFilesInMemory : 10 ,
136
136
MinTimeToExpiry : 0 * time .Second ,
Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ type CloudFetchConfig struct {
471
471
}
472
472
473
473
func (cfg CloudFetchConfig ) WithDefaults () CloudFetchConfig {
474
- cfg .UseCloudFetch = false
474
+ cfg .UseCloudFetch = true
475
475
476
476
if cfg .MaxDownloadThreads <= 0 {
477
477
cfg .MaxDownloadThreads = 10
You can’t perform that action at this time.
0 commit comments