This commit is contained in:
Adrian Utrilla 2017-03-22 19:17:07 +01:00
Родитель bd63010d67
Коммит 62ad4b400e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6BA64E6212CDEBE9
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -191,7 +191,7 @@ func ParseKMSContext(in interface{}) map[string]*string {
for k, v := range in {
value, ok := v.(string)
if !ok {
fmt.Printf("[WARNING]: KMS Encryption Context contains a non-string value, context will not be used")
fmt.Println("[WARNING]: KMS Encryption Context contains a non-string value, context will not be used")
return nil
}
out[k] = &value
@ -203,12 +203,12 @@ func ParseKMSContext(in interface{}) map[string]*string {
for k, v := range in {
key, ok := k.(string)
if !ok {
fmt.Printf("[WARNING]: KMS Encryption Context contains a non-string key, context will not be used")
fmt.Println("[WARNING]: KMS Encryption Context contains a non-string key, context will not be used")
return nil
}
value, ok := v.(string)
if !ok {
fmt.Printf("[WARNING]: KMS Encryption Context contains a non-string value, context will not be used")
fmt.Println("[WARNING]: KMS Encryption Context contains a non-string value, context will not be used")
return nil
}
out[key] = &value