Skip to content

Commit 7d507eb

Browse files
auto commit
1 parent 28394e8 commit 7d507eb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Examples/runtimes/go/migration/PlaintextToAWSDBE/awsdbe/migrationexamplestep1.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package awsdbe
22

33
import (
44
"context"
5+
"fmt"
56
"reflect"
67

78
"github.com/aws/aws-sdk-go-v2/aws"
@@ -105,5 +106,5 @@ func MigrationStep1(kmsKeyID, ddbTableName, partitionKeyValue, sortKeyValue stri
105106
if !reflect.DeepEqual(item, result.Item) {
106107
panic("Decrypted item does not match original item")
107108
}
108-
109+
fmt.Println("MigrationStep1 completed successfully")
109110
}

Examples/runtimes/go/migration/PlaintextToAWSDBE/awsdbe/migrationexamplestep2.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package awsdbe
33
import (
44
// Standard imports
55
"context"
6+
"fmt"
67
"reflect"
78

89
// AWS SDK imports
@@ -103,4 +104,5 @@ func MigrationStep2(kmsKeyID, ddbTableName, partitionKeyValue, sortKeyValue stri
103104
if !reflect.DeepEqual(item, result.Item) {
104105
panic("Decrypted item does not match original item")
105106
}
107+
fmt.Println("MigrationStep2 completed successfully")
106108
}

0 commit comments

Comments
 (0)