Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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/router-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
codecov-token: ${{ secrets.CODECOV_TOKEN }}

integration_test:
runs-on: ubuntu-latest-l
runs-on: ubuntu-latest
timeout-minutes: 30
env:
GOMAXPROCS: 4
Expand Down
4 changes: 4 additions & 0 deletions router/core/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,10 @@ func (r *Router) buildClients(ctx context.Context) error {
}

if storageProviderID != "" {
if pClient == nil {
return fmt.Errorf("storage provider %q is configured for PQL manifest but no matching provider was found in storage_providers", storageProviderID)
}

// An explicit storage provider is configured — read the manifest once at startup.
objectPrefix := r.persistedOperationsConfig.Storage.ObjectPrefix
objectPath := manifestFileName
Expand Down
Loading