Fix physical/postgresql to return the full entry key (#6044)

Fixes #6041
This commit is contained in:
Jim Kalafut
2019-01-15 12:06:01 -08:00
committed by GitHub
parent d5668f47ca
commit 25ac2ad7a6
2 changed files with 10 additions and 1 deletions

View File

@@ -164,7 +164,7 @@ func (m *PostgreSQLBackend) Get(ctx context.Context, fullPath string) (*physical
}
ent := &physical.Entry{
Key: key,
Key: fullPath,
Value: result,
}
return ent, nil