From 8c8f3b3dec6e239f61339ff2f97b1890160e8541 Mon Sep 17 00:00:00 2001 From: ph1ll Date: Tue, 20 Feb 2024 13:47:20 +0000 Subject: [PATCH] Fix typo - missing closing quote (#143) --- src/pages/selfhosted/sqlite-store.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/selfhosted/sqlite-store.mdx b/src/pages/selfhosted/sqlite-store.mdx index fd39a25b..86e997a0 100644 --- a/src/pages/selfhosted/sqlite-store.mdx +++ b/src/pages/selfhosted/sqlite-store.mdx @@ -132,7 +132,7 @@ To rollback to the JSON file store, follow these steps: 5. Enable JSON file by updating the management.json file and setting the `Engine` field to `jsonfile` as the following example: ```json "StoreConfig": { - "Engine": "jsonfile + "Engine": "jsonfile" } ``` 6. Restart the Management service. @@ -146,4 +146,4 @@ To rollback to the JSON file store, follow these steps: You should see an entry similar to: ``` 2023-10-19T18:55:29Z INFO management/server/store.go:72: using JSON file store engine -``` \ No newline at end of file +```