mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
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:
parent
c4ea9a730f
commit
7be7556b69
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue