samples-typescript icon indicating copy to clipboard operation
samples-typescript copied to clipboard

[Bug] gRPC Connection Refused when executing Workflows in tests

Open markan-memora opened this issue 1 year ago • 1 comments

What are you really trying to do?

I am trying to test executing my Temporal workflows with the @temporalio/testing package.

Describe the bug

Whenever I try to execute a workflow with the testing library (TestWorkflowEnvironment), I see a gRPC error saying that the connection was refused.

I believe this issue surfaced today, as my tests were working up until yesterday, and no changes were made on my end.

Minimal Reproduction

You can reproduce the issue with this repo's example tests in activities-examples/src/mocha.

Steps:

  • Fresh clone of this repo
  • cd activities-examples
  • npm install
  • npm test

Tests error with gRPC Connection Refused

$ git clone https://github.com/temporalio/samples-typescript
$ cd samples-typescript/activities-examples
$ npm install
$ npm test


> [email protected] test
> mocha --require ts-node/register --require source-map-support/register src/mocha/*.test.ts



  example workflow
2024-04-29T21:38:36.476892Z  WARN temporal_client::retry: gRPC call poll_activity_task_queue retried 6 times error=Status { code: Unavailable, message: "error trying to connect: tcp connect error: Connection refused (os error 61)", source: Some(tonic::transport::Error(Transport, hyper::Error(Connect, ConnectError("tcp connect error", Os { code: 61, kind: ConnectionRefused, message: "Connection refused" })))) }
2024-04-29T21:38:36.759551Z  WARN temporal_client::retry: gRPC call poll_activity_task_queue retried 6 times error=Status { code: Unavailable, message: "error trying to connect: tcp connect error: Connection refused (os error 61)", source: Some(tonic::transport::Error(Transport, hyper::Error(Connect, ConnectError("tcp connect error", Os { code: 61, kind: ConnectionRefused, message: "Connection refused" })))) }
...

  0 passing (59s)
  4 failing

Environment/Versions

  • OS and processor: M1 Mac
  • Temporal Version:
$ node --version
v18.18.2
$ npm --version
9.8.1
$ npm list @temporalio/client
[email protected] /Users/markan/samples-typescript/activities-examples
├── @temporalio/[email protected]
├─┬ @temporalio/[email protected]
│ └── @temporalio/[email protected] deduped
└─┬ @temporalio/[email protected]
  └── @temporalio/[email protected] deduped
  • Are you using Docker or Kubernetes or building Temporal from source? N/A, I'm just trying to run the example test from this repo

Additional context

markan-memora avatar Apr 29 '24 21:04 markan-memora