From 2e5d2bfedabce9d8ee949dfdc78b9581a754965d Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 4 Sep 2024 18:14:57 +0200 Subject: [PATCH] remove grpc web + don't wait to run system tess --- .github/workflows/test.yml | 1 - tests/systemtests/testnet_init.go | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2caee7cdbb6..ad1a7b8aaefc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -145,7 +145,6 @@ jobs: path: ./tests/e2e-profile.out test-system: - needs: [tests, test-integration, test-e2e] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/tests/systemtests/testnet_init.go b/tests/systemtests/testnet_init.go index e69e65a30772..fae6f42ef2de 100644 --- a/tests/systemtests/testnet_init.go +++ b/tests/systemtests/testnet_init.go @@ -160,7 +160,6 @@ func (s ModifyConfigYamlInitializer) Initialize() { EditToml(filepath.Join(nodeDir, "app.toml"), func(doc *tomledit.Document) { UpdatePort(doc, apiPortStart+i, "api", "address") UpdatePort(doc, grpcPortStart+i, "grpc", "address") - SetBool(doc, true, "grpc-web", "enable") }) } }