Skip to content

Commit

Permalink
Fix multiple parameters handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Dementiev committed Dec 23, 2018
1 parent f2a3a3c commit 0f5aa8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssm/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func getJsonSSMParametersByPaths(paths []string, strict, recursive bool) (parame
}
parameters = append(parameters, innerParameters...)

return false
return true
},
)
if innerErr != nil {
Expand Down Expand Up @@ -132,7 +132,7 @@ func getPlainSSMParametersByPaths(paths []string, strict, recursive bool) (param
}
parameters = append(parameters, innerParameters...)

return false
return true
},
)
if innerErr != nil {
Expand Down

0 comments on commit 0f5aa8a

Please sign in to comment.