Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: go build -v ./...

- name: Set up testing stacks
run: docker-compose up -d
run: docker compose up -d

- name: Test
run: go test -v ./...
6 changes: 5 additions & 1 deletion store/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ func (l *LocalStore) IsPartialWriteVisible(path string) bool {
}

func (l *LocalStore) Exists(path string) (bool, error) {
return l.s.Exists(path)
_, err := l.ResolvePathOnPhysicalStore(path)
if err != nil {
return false, err
}
return true, nil
}

func (l *LocalStore) Create(path string) error {
Expand Down
Loading