Skip to content

Commit

Permalink
Fix return statement in getGlueSchemaType method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jithendar12 committed Aug 23, 2024
1 parent ec12d57 commit d16f99f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public <T> T getGlueSchema(String glueRegistryName, String glueSchemaName, Class
public String getGlueSchemaType(String glueRegistryName, String glueSchemaName)
{
GetSchemaVersionResponse result = getSchemaVersionResult(glueRegistryName, glueSchemaName);
return result.dataFormat().toString();
return result.dataFormatAsString();
}
public String getSchemaDef(String glueRegistryName, String glueSchemaName)
{
Expand Down

0 comments on commit d16f99f

Please sign in to comment.