Skip to content

Commit

Permalink
outputs - staticmethod on retry for metrics output and version increm…
Browse files Browse the repository at this point in the history
…ent 0.8.25.1 (#1482) (closes #1481)
  • Loading branch information
kapilt committed Aug 14, 2017
1 parent 4a3bc7b commit 4541341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion c7n/output.py
Expand Up @@ -43,7 +43,7 @@ class MetricsOutput(object):

permissions = ("cloudWatch:PutMetricData",)

retry = get_retry(('Throttling',))
retry = staticmethod(get_retry(('Throttling',)))

@staticmethod
def select(metrics_enabled):
Expand Down
2 changes: 1 addition & 1 deletion c7n/version.py
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = u"0.8.25.0"
version = u"0.8.25.1"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@ def read(fname):

setup(
name="c7n",
version='0.8.25.0',
version='0.8.25.1',
description="Cloud Custodian - Policy Rules Engine",
long_description=read('README.rst'),
classifiers=[
Expand Down

0 comments on commit 4541341

Please sign in to comment.