From fef07090f18fe1ac8041e073cb0b2b4507ac78e2 Mon Sep 17 00:00:00 2001 From: Cosmos Nicolaou Date: Tue, 2 Jan 2024 20:18:22 -0800 Subject: [PATCH] . --- .github/workflows/linux.yml | 2 +- x/ref/runtime/internal/rpc/server.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 652684e8..a545fe77 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -32,7 +32,7 @@ jobs: export VDLPATH=$GITHUB_WORKSPACE go test --race --covermode=atomic --timeout=15m ./... cd x/ref/examples - go test --race --covermode=atomic ./... + go test -v --race --covermode=atomic ./... integration-tests: runs-on: ubuntu-latest diff --git a/x/ref/runtime/internal/rpc/server.go b/x/ref/runtime/internal/rpc/server.go index f8659670..4dc890b8 100644 --- a/x/ref/runtime/internal/rpc/server.go +++ b/x/ref/runtime/internal/rpc/server.go @@ -111,7 +111,7 @@ func WithNewDispatchingServer(ctx *context.T, typeCache: newTypeCache(), state: rpc.ServerInitializing, endpoints: make(map[string]naming.Endpoint), - lameDuckTimeout: 10 * time.Second, // TODO(cnicolaou): make this an option + lameDuckTimeout: 5 * time.Second, // TODO(cnicolaou): make this an option closed: make(chan struct{}), outstanding: newOutstandingStats(naming.Join("rpc", "server", "outstanding", rid.String())), }