Skip to content

Commit

Permalink
Merge branch 'master' into PHRAS-4078_ExpiringRight-to-core
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaillat authored Jul 5, 2024
2 parents eafb191 + b0601b9 commit ee92622
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,11 @@ jobs:
- name: build ${{ inputs.image }}
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: ${{ inputs.context }}
file: ${{ inputs.file }}
provenance: false
push: true
cache-from: type=registry,ref=${{ env.CACHE_REGISTRY }}/${{ inputs.image }}:build-cache
cache-to: type=registry,mode=max,ref=${{ env.CACHE_REGISTRY }}/${{ inputs.image }}:build-cache
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public function searchRawAction(Request $request)

$search_result = $se->queryraw((string)$request->get('query'), $options);

$search_result['offset'] = $offset;
$search_result['limit'] = $limit;

$stopwatch->lap("queryraw");

// queryraw returns also a stopwatch, get and remove it
Expand Down

0 comments on commit ee92622

Please sign in to comment.