Skip to content

Commit

Permalink
Fix PutRetentionPolicy call
Browse files Browse the repository at this point in the history
  • Loading branch information
Jc2k committed May 25, 2015
1 parent 83ad557 commit c4b9bfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion touchdown/aws/logs/group.py
Expand Up @@ -60,7 +60,10 @@ def update_object(self):
yield self.generic_action(
"Set log group retention to {} days".format(
self.resource.retention
)
),
self.client.put_retention_policy,
logGroupName=self.resource.name,
retentionInDays=self.resource.retention,
)


Expand Down

0 comments on commit c4b9bfb

Please sign in to comment.