Skip to content

Commit

Permalink
Missed one in DDB
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-aws committed Oct 23, 2023
1 parent e841a8a commit 213da2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static Result<IDynamoDBClient, Error> DynamoDBClient() {
return Result.create_Success(dafny.TypeDescriptor.reference(IDynamoDBClient.class), Error._typeDescriptor(), shim);
} catch (Exception e) {
Error dafny_error = Error.create_InternalServerError(
Option.create_Some(CharacterSequence(e.getMessage())));
Option.create_Some(dafny.DafnySequence._typeDescriptor(dafny.TypeDescriptor.CHAR), CharacterSequence(e.getMessage())));
return Result.create_Failure(dafny.TypeDescriptor.reference(IDynamoDBClient.class), Error._typeDescriptor(), dafny_error);
}
}
Expand Down

0 comments on commit 213da2b

Please sign in to comment.