File tree Expand file tree Collapse file tree
aws-volume-provisioner-installer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[package ]
22name = " 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
44edition = " 2021"
55rust-version = " 1.69"
66publish = true
Original file line number Diff line number Diff line change 11[package ]
22name = " 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
44edition = " 2021"
55rust-version = " 1.69"
66description = " AWS volume provisioner"
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments