Skip to content

Commit b4ebfbd

Browse files
committed
[ci] cleanup
Signed-off-by: Itai Segall <itai.segall@digitalasset.com>
1 parent 06f4797 commit b4ebfbd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/common/src/main/scala/org/lfdecentralizedtrust/splice/store/db/DbKeyValueStore.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ class DbKeyValueStore private (
3838
): Future[Unit] = {
3939
val jsonValue: Json = value.asJson
4040

41-
val action =
42-
sql"""INSERT INTO key_value_store (key, value, store_id)
41+
val action = sql"""INSERT INTO key_value_store (key, value, store_id)
4342
VALUES ($key, $jsonValue, $storeId)
4443
ON CONFLICT (store_id, key) DO UPDATE
4544
SET value = excluded.value""".asUpdate

0 commit comments

Comments
 (0)