File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ async fn ssm_get_parameter(
64
64
"error" ,
65
65
true ,
66
66
Some ( format ! (
67
- "Error calling ssm:GetParameter. Environment variable: {} Path: {} Error: {}" ,
68
- name, path, error
67
+ "Error calling ssm:GetParameter. Environment variable: {} Path: {} Error: {:? }" ,
68
+ name, path, error. into_service_error ( ) . meta ( )
69
69
) ) ,
70
70
) ;
71
71
}
@@ -112,8 +112,8 @@ async fn ssm_get_parameters_by_path(
112
112
"error" ,
113
113
true ,
114
114
Some ( format ! (
115
- "Error calling ssm:GetParametersByPath. Environment variable: {} Path: {} Error: {}" ,
116
- name, path, error
115
+ "Error calling ssm:GetParametersByPath. Environment variable: {} Path: {} Error: {:? }" ,
116
+ name, path, error. into_service_error ( ) . meta ( )
117
117
) ) ,
118
118
) ;
119
119
break ;
You can’t perform that action at this time.
0 commit comments