add S3_READ_TIMEOUT environment variable (#14952)
This commit is contained in:
		
							parent
							
								
									da10c5c707
								
							
						
					
					
						commit
						7919418e4c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -62,7 +62,7 @@ if ENV['S3_ENABLED'] == 'true'
 | 
				
			||||||
    s3_options: {
 | 
					    s3_options: {
 | 
				
			||||||
      signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
 | 
					      signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
 | 
				
			||||||
      http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
 | 
					      http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
 | 
				
			||||||
      http_read_timeout: 5,
 | 
					      http_read_timeout: ENV.fetch('S3_READ_TIMEOUT'){ '5' }.to_i,
 | 
				
			||||||
      http_idle_timeout: 5,
 | 
					      http_idle_timeout: 5,
 | 
				
			||||||
      retry_limit: 0,
 | 
					      retry_limit: 0,
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue