storage/sql: Make the update pipe socket path shorter

On *nix systems, the length of Unix socket path is limited to 104-108
characters.
This commit is contained in:
fox.cpp 2019-12-09 23:25:45 +03:00
parent c4ea9a730f
commit 7be7556b69
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C

View file

@ -9,7 +9,7 @@ package sql
import (
"context"
"crypto/sha256"
"crypto/sha1"
"encoding/hex"
"errors"
"fmt"
@ -285,7 +285,7 @@ func (store *Storage) EnableUpdatePipe(mode updatepipe.BackendMode) error {
switch store.driver {
case "sqlite3":
dbId := sha256.Sum256([]byte(strings.Join(store.dsn, " ")))
dbId := sha1.Sum([]byte(strings.Join(store.dsn, " ")))
store.updPipe = &updatepipe.UnixSockPipe{
SockPath: filepath.Join(
config.RuntimeDirectory,