Skip to content

Commit

Permalink
fix: wrong update path for schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwwinter committed Mar 12, 2024
1 parent 5d94476 commit a1c9616
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class SqsSchemaService(
return Mono.zip(
couchDbStorage.getDatabaseDocument(
database = TARGET_DATABASE,
documentId = SCHEMA_PATH,
documentId = FILENAME_CONFIG_ENTITY,
queryParams = LinkedMultiValueMap(),
kClass = AppConfigFile::class
)
Expand Down Expand Up @@ -105,7 +105,7 @@ class SqsSchemaService(

couchDbStorage.putDatabaseDocument(
database = TARGET_DATABASE,
documentId = FILENAME_CONFIG_ENTITY,
documentId = SCHEMA_PATH,
body = newSqsSchema,
)
.flatMap {
Expand Down

0 comments on commit a1c9616

Please sign in to comment.