File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33### Master
44
5+ - fix: flag ` --retry-timeout ` bug
6+
57### 3.0.30
68
79- update: meta data
Original file line number Diff line number Diff line change 44
55<p align =" center " >
66<a href =" https://travis-ci.org/aliyun/aliyun-cli " ><img src =" https://travis-ci.org/aliyun/aliyun-cli.svg?branch=master " alt =" Travis Build Status " ></a >
7- <a href =" https://ci.appveyor.com/project/aliyun/aliyun-cli " ><img src =" https://ci.appveyor.com/api/projects/status/5ahqhua64ifr6skx /branch/master?svg=true " alt =" Appveyor Build Status " ></a >
7+ <a href =" https://ci.appveyor.com/project/aliyun/aliyun-cli " ><img src =" https://ci.appveyor.com/api/projects/status/avxoqqcmgksbt3d8 /branch/master?svg=true " alt =" Appveyor Build Status " ></a >
88<a href =" https://codecov.io/gh/aliyun/aliyun-cli " ><img src =" https://codecov.io/gh/aliyun/aliyun-cli/branch/master/graph/badge.svg " alt =" codecov " ></a >
99<a href =" https://github.com/aliyun/aliyun-cli/blob/master/LICENSE " ><img src =" https://img.shields.io/github/license/aliyun/aliyun-cli.svg " alt =" License " ></a >
1010<a href =" https://goreportcard.com/report/github.com/aliyun/aliyun-cli " ><img src =" https://goreportcard.com/badge/github.com/aliyun/aliyun-cli " alt =" Go Report " ></a >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ English | [简体中文](./README-CN.md)
44
55<p align =" center " >
66<a href =" https://travis-ci.org/aliyun/aliyun-cli " ><img src =" https://travis-ci.org/aliyun/aliyun-cli.svg?branch=master " alt =" Travis Build Status " ></a >
7- <a href =" https://ci.appveyor.com/project/aliyun/aliyun-cli " ><img src =" https://ci.appveyor.com/api/projects/status/5ahqhua64ifr6skx /branch/master?svg=true " alt =" Appveyor Build Status " ></a >
7+ <a href =" https://ci.appveyor.com/project/aliyun/aliyun-cli " ><img src =" https://ci.appveyor.com/api/projects/status/avxoqqcmgksbt3d8 /branch/master?svg=true " alt =" Appveyor Build Status " ></a >
88<a href =" https://codecov.io/gh/aliyun/aliyun-cli " ><img src =" https://codecov.io/gh/aliyun/aliyun-cli/branch/master/graph/badge.svg " alt =" codecov " ></a >
99<a href =" https://github.com/aliyun/aliyun-cli/blob/master/LICENSE " ><img src =" https://img.shields.io/github/license/aliyun/aliyun-cli.svg " alt =" License " ></a >
1010<a href =" https://goreportcard.com/report/github.com/aliyun/aliyun-cli " ><img src =" https://goreportcard.com/badge/github.com/aliyun/aliyun-cli " alt =" Go Report " ></a >
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ func (cp *Profile) OverwriteWithFlags(ctx *cli.Context) {
142142 cp .RegionId = RegionFlag (ctx .Flags ()).GetStringOrDefault (cp .RegionId )
143143 cp .Language = LanguageFlag (ctx .Flags ()).GetStringOrDefault (cp .Language )
144144 cp .RetryTimeout = RetryTimeoutFlag (ctx .Flags ()).GetIntegerOrDefault (cp .RetryTimeout )
145- cp .RetryCount = RetryTimeoutFlag (ctx .Flags ()).GetIntegerOrDefault (cp .RetryCount )
145+ cp .RetryCount = RetryCountFlag (ctx .Flags ()).GetIntegerOrDefault (cp .RetryCount )
146146 cp .ExpiredSeconds = ExpiredSecondsFlag (ctx .Flags ()).GetIntegerOrDefault (cp .ExpiredSeconds )
147147
148148 if cp .AccessKeyId == "" {
You can’t perform that action at this time.
0 commit comments