From 42f0495620de74822e28480cf9d57d4dae43ce89 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Wed, 15 Mar 2023 18:19:32 +0100 Subject: [PATCH] fmt --- .github/workflows/msrv-check.yml | 16 ++++++++-------- plugins/store/README.md | 2 ++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/msrv-check.yml b/.github/workflows/msrv-check.yml index 894ecffa..a603e8f0 100644 --- a/.github/workflows/msrv-check.yml +++ b/.github/workflows/msrv-check.yml @@ -5,18 +5,18 @@ on: branches: - dev paths: - - '.github/workflows/msrv-check.yml' - - 'plugins/*/src/**' - - '**/Cargo.toml' - - '**/Cargo.lock' + - ".github/workflows/msrv-check.yml" + - "plugins/*/src/**" + - "**/Cargo.toml" + - "**/Cargo.lock" pull_request: branches: - dev paths: - - '.github/workflows/msrv-check.yml' - - 'plugins/*/src/**' - - '**/Cargo.toml' - - '**/Cargo.lock' + - ".github/workflows/msrv-check.yml" + - "plugins/*/src/**" + - "**/Cargo.toml" + - "**/Cargo.lock" concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/plugins/store/README.md b/plugins/store/README.md index c76c354c..f48f03ba 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -64,7 +64,9 @@ await store.save(); // this manually saves the store, otherwise the store is onl ``` ### Persisting values + Values added to the store are not persisted between application loads unless: + 1. The application is closed gracefully (plugin automatically saves) 2. The store is manually saved (using `store.save()`)