Skip to content

Commit

Permalink
fix: ignore label when parsing EntityConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwwinter committed Jun 14, 2024
1 parent 1ed881f commit 6cb8898
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class SqsSchemaService(

private fun parseEntityConfig(entityKey: String, config: AppConfigEntry): EntityType {
return EntityType(
label = config.label ?: entityKey.split(":")[1],
label = entityKey.split(":")[1],
attributes = config.attributes.orEmpty().map {
EntityAttribute(
name = it.key,
Expand Down

0 comments on commit 6cb8898

Please sign in to comment.