From 5635a7c5daed69833a807972785849475be93acc Mon Sep 17 00:00:00 2001 From: Eugene Howe Date: Tue, 1 Mar 2016 13:55:42 -0500 Subject: [PATCH] 1.8 fix --- lib/fog/aws/models/rds/cluster_snapshots.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/aws/models/rds/cluster_snapshots.rb b/lib/fog/aws/models/rds/cluster_snapshots.rb index af7443403..4aed10376 100644 --- a/lib/fog/aws/models/rds/cluster_snapshots.rb +++ b/lib/fog/aws/models/rds/cluster_snapshots.rb @@ -37,7 +37,7 @@ module Fog def create(params={}) if cluster - super(params.merge(cluster_id: cluster.id)) + super(params.merge(:cluster_id => cluster.id)) else super(params) end