You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added option to disable creating the log group (#75)
* Added option to disable creating the log group
* Move create group option to constructor
* Move paragraph to relevant section in README
Do not overshadow errors thrown by DescribeLogGroups. (#68)
If DescribeLogGroups throws an error (e.g. AccessDeniedException), the retry logic
will still call DescribeLogStreams, which will also fail, either with
AccessDeniedException, or, more confusingly, with "The specified log group
does not exist." if the log group has never been created.
This change makes sure that the original error is thrown.