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

Fix collection resource hydration path #61

Merged
merged 2 commits into from
Feb 10, 2015
Merged

Commits on Feb 9, 2015

  1. Fix collection resource hydration path

    This fixes #57 by hydrating resources from a collection with a JMESPath
    query that is at `collection.resource.path` instead of `collection.path`
    in the resource model.
    
    ```python
    import boto3
    
    for o in boto3.resource('s3').Bucket('boto3').objects.all():
        # `o.meta.data` is set now, so the following succeeds.
        print(o.size)
    ```
    danielgtaylor committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    d77bdc6 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2015

  1. Configuration menu
    Copy the full SHA
    f4a2e72 View commit details
    Browse the repository at this point in the history