Skip to content
Snippets Groups Projects
Commit 7b5c85e2 authored by Rucha Deshpande's avatar Rucha Deshpande Committed by Matt Wise
Browse files

Fix: Retrieve Value from the Property Map

commit c3e5c03d 
Author: Rucha Deshpande <deshruch@amazon.com> 
Date: Mon Mar 01 2021 11:54:39 GMT-0600 (Central Standard Time) 

    Fix: Retrieve Value from the Property Map
parent b1f76d51
No related branches found
No related tags found
1 merge request!41Fix: Retrieve Value from the Property Map
Checking pipeline status
......@@ -49,7 +49,7 @@ public class PartitionServiceImpl implements IPartitionService {
try {
for (Map.Entry<String, Property> entry : partitionInfo.getProperties().entrySet()) {
ssmHelper.createOrUpdateSecret(partitionId, entry.getKey(), entry.getValue());
ssmHelper.createOrUpdateSecret(partitionId, entry.getKey(), entry.getValue().getValue());
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment