Skip to content

Commit

Permalink
Add linting bug
Browse files Browse the repository at this point in the history
Signed-off-by: Friedrich Gonzalez <[email protected]>
  • Loading branch information
friedrichg committed May 9, 2024
1 parent 0f0d4a3 commit 6f3bbec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
steps:
- uses: actions/checkout@v4
name: Checkout
with:
fetch-depth: 0

- name: "Build mixin"
run: make build-mixin
Expand All @@ -36,6 +38,8 @@ jobs:
steps:
- uses: actions/checkout@v4
name: Checkout
with:
fetch-depth: 0

- name: "Test readme"
run: make test-readme
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ build-mixin:
test-readme: test-readme/azure test-readme/gcs test-readme/s3

test-readme/%:
@./scripts/test-readme.sh $@
@./scripts/test-readme.sh $@; \
exit $$?

clean-white-noise:
@$(FIND) . -type f -regextype posix-extended -regex '.*(md|libsonnet)' -print | \
Expand Down
2 changes: 1 addition & 1 deletion cortex/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// (comparing performances).
query_tee_enabled: false,
query_tee_backend_endpoints: [],
query_tee_backend_preferred: '',
query_tee_backend_preferred: '',

grpcConfig:: {
'server.grpc.keepalive.min-time-between-pings': '10s',
Expand Down

0 comments on commit 6f3bbec

Please sign in to comment.