Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force plain (not gzipped) aws response on aiohttp request #57

Merged
merged 2 commits into from
Oct 15, 2016

Commits on Oct 14, 2016

  1. Force plain (not gzipped) aws response on aiohttp request

    When using aiobotocore with dynamodb, requests fail on crc32
    checksum computation as soon as the response data reaches ~5KB.
    
    It seems that this is  due to aws sending data back in gzip
    compressed format, aiohttp automatically uncompressing it
    and crc32 checksum being computed on the uncompressed data bytes.
    While crc32 has to be computed on compressed data in order
    to pass.
    
    The same requests work as expected when using botocore, this
    commit forces aws not to use gzip compression.
    rymir committed Oct 14, 2016
    Configuration menu
    Copy the full SHA
    9cd8ea3 View commit details
    Browse the repository at this point in the history
  2. Add basic dynamodb test

    rymir committed Oct 14, 2016
    Configuration menu
    Copy the full SHA
    0dae162 View commit details
    Browse the repository at this point in the history