Skip to content

Commit

Permalink
fix(ui): list active targets only (#3196)
Browse files Browse the repository at this point in the history
* fix(ui): list active targets only

* ci(container): bump goreleaser timeout
  • Loading branch information
maxbrunet authored May 31, 2023
1 parent 24b592c commit 2deea1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
with:
distribution: goreleaser
version: ${{ env.GORELEASER_VERSION }}
args: build --clean --skip-validate --snapshot --debug
args: build --clean --skip-validate --snapshot --debug --timeout=60m
env:
GORELEASER_CURRENT_TAG: "${{ env.goreleaser_current_tag }}"

Expand Down
2 changes: 1 addition & 1 deletion ui/packages/app/web/src/pages/targets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const useTargets = (client: ScrapeServiceClient): ITargetsResult => {

useEffect(() => {
const call = client.targets({
state: TargetsRequest_State.ANY_UNSPECIFIED,
state: TargetsRequest_State.ACTIVE,
});

call.response
Expand Down

0 comments on commit 2deea1a

Please sign in to comment.