put store lock file in base of storage

This commit is contained in:
tsmethurst 2022-01-29 12:16:12 +01:00
commit d9a778a795
2 changed files with 10 additions and 3 deletions

View file

@ -24,6 +24,7 @@ import (
"fmt"
"io"
"os"
"path"
"testing"
"time"
@ -284,10 +285,12 @@ func (suite *ManagerTestSuite) TestSimpleJpegProcessBlockingWithDiskStorage() {
accountID := "01FS1X72SK9ZPW0J1QQ68BD264"
temp := fmt.Sprintf("%s/store", os.TempDir())
temp := fmt.Sprintf("%s/gotosocial-test", os.TempDir())
defer os.RemoveAll(temp)
diskStorage, err := kv.OpenFile(temp, &storage.DiskConfig{})
diskStorage, err := kv.OpenFile(temp, &storage.DiskConfig{
LockFile: path.Join(temp, "store.lock"),
})
if err != nil {
panic(err)
}