Sha256: ed85b814596a695e9539e8707deb24fa007fc7baa3440afc5d6093d1230c0f21
Contents?: true
Size: 337 Bytes
Versions: 16
Compression:
Stored size: 337 Bytes
Contents
//go:build !go1.18 // +build !go1.18 package eventstreamapi import smithyhttp "github.com/aws/smithy-go/transport/http" // ApplyHTTPTransportFixes applies fixes to the HTTP request for proper event stream functionality. func ApplyHTTPTransportFixes(r *smithyhttp.Request) error { r.Header.Set("Expect", "100-continue") return nil }
Version data entries
16 entries across 16 versions & 1 rubygems