We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc12038 commit a5f909aCopy full SHA for a5f909a
tests/helpers/nexus.py
@@ -2,15 +2,17 @@
2
from dataclasses import dataclass
3
from typing import Any, Mapping, Optional
4
5
-import httpx
6
-from google.protobuf import json_format
7
-
8
import temporalio.api
9
import temporalio.api.nexus.v1
10
import temporalio.api.operatorservice.v1
+import temporalio.workflow
11
from temporalio.client import Client
12
from temporalio.converter import FailureConverter, PayloadConverter
13
+with temporalio.workflow.unsafe.imports_passed_through():
+ import httpx
14
+ from google.protobuf import json_format
15
+
16
17
def make_nexus_endpoint_name(task_queue: str) -> str:
18
# Create endpoints for different task queues without name collisions.
0 commit comments