Skip to content

Commit 17830bf

Browse files
committed
0.0.116
Signed-off-by: Gyuho Lee <gyuho.lee@avalabs.org>
1 parent 0fda300 commit 17830bf

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

aws-volume-provisioner-installer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-volume-provisioner-installer"
3-
version = "0.0.115" # https://github.com/ava-labs/volume-manager/releases
3+
version = "0.0.116" # https://github.com/ava-labs/volume-manager/releases
44
edition = "2021"
55
rust-version = "1.69"
66
publish = true

aws-volume-provisioner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-volume-provisioner"
3-
version = "0.0.115" # https://github.com/ava-labs/volume-manager/releases
3+
version = "0.0.116" # https://github.com/ava-labs/volume-manager/releases
44
edition = "2021"
55
rust-version = "1.69"
66
description = "AWS volume provisioner"

aws-volume-provisioner/src/command.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ pub async fn execute(opts: Flags) -> io::Result<()> {
265265

266266
log::info!("fetching the tag value for {}", opts.ec2_tag_asg_name_key);
267267
let mut asg_tag_value = String::new();
268-
for i in 0..10 {
268+
for i in 0..30 {
269269
log::info!("[{i}] fetching tags until ec2_tag_asg_name_key is found");
270270
let tags = ec2_manager
271271
.fetch_tags(&ec2_instance_id)
@@ -284,7 +284,7 @@ pub async fn execute(opts: Flags) -> io::Result<()> {
284284
if !asg_tag_value.is_empty() {
285285
break;
286286
}
287-
sleep(Duration::from_secs(5)).await;
287+
sleep(Duration::from_secs(10)).await;
288288
}
289289
if asg_tag_value.is_empty() {
290290
return Err(Error::new(

0 commit comments

Comments
 (0)