Skip to content

Commit

Permalink
Merge pull request #354 from awslabs/master
Browse files Browse the repository at this point in the history
RELEASE 0.8.5
  • Loading branch information
rickychau2780 authored Jul 15, 2022
2 parents fbb79ab + 26ebb26 commit 90dc5b0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

MY_VERSION = "0.8.4"
MY_VERSION = "0.8.5"
7 changes: 6 additions & 1 deletion rdk/rdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3658,7 +3658,12 @@ def __wait_for_cfn_stack(self, cfn_client, stackname):
my_stacks = []
response = cfn_client.list_stacks()

for stack in response["StackSummaries"]:
all_stacks = response["StackSummaries"]
while 'NextToken' in response:
response = cfn_client.list_stacks(NextToken=response['NextToken'])
all_stacks += response["StackSummaries"]

for stack in all_stacks:
if stack["StackName"] == stackname:
my_stacks.append(stack)

Expand Down
2 changes: 1 addition & 1 deletion rdk/template/runtime/dotnetcore1.0/csharp7.0.csproj
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="AWSSDK.Core" Version="3.3.19" />
<PackageReference Include="AWSSDK.Lambda" Version="3.3.8.3" />
<PackageReference Include="AWSSDK.S3" Version="3.3.13" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion rdk/template/runtime/dotnetcore2.0/csharp7.0.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="AWSSDK.Core" Version="3.3.19" />
<PackageReference Include="AWSSDK.Lambda" Version="3.3.8.3" />
<PackageReference Include="AWSSDK.S3" Version="3.3.13" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 90dc5b0

Please sign in to comment.