failure_converter.go ×1

Frontier kind: Code frontier

unlabeled · c_a5f073a4a0c1

4 tests · 60 LOC · 2 files · introduces 0 tests · 5 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
2 ranges5 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
18 ranges60 lines · 2 files · Browse complete extent
All tests (intent)
4 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Introduced files, introduced tests, and structurally relevant concept specializationfailure · 0 introduced LOCfailurefailure · 0 introduced LOCfailurefailure_converter.go ×1 · 1 introduced LOCfailure_converter.go ×1nexus_operation_http_handler.go ×1 · 2 introduced LOCnexus_operation_http_han…client.go ×1 · 4 introduced LOCclient.go ×1server.go ×4 · 7 introduced LOCserver.go ×4failure_converter.go ×5 · 23 introduced LOCfailure_converter.go ×5server.go ×4 · 19 introduced LOCserver.go ×4failure_converter.go ×2 · 3 introduced LOCfailure_converter.go ×2failure_converter.go ×1 · 3 introduced LOCfailure_converter.go ×1TestOperatorServiceMetadata, TestWorkflowServiceMetadata · 0 introduced LOCTestOperatorServiceMetad…go.temporal.io/server/common/nexus/nexusrpc/client.go · 502 LOCnexusrpc/client.gogo.temporal.io/server/common/nexus/nexusrpc/failure_converter.go · 213 LOCnexusrpc/failure_convert…go.temporal.io/server/common/nexus/nexusrpc/server.go · 404 LOCnexusrpc/server.gogo.temporal.io/server/service/frontend/nexus_operation_http_handler.go · 319 LOCfrontend/nexus_operation…failure · introduced test · go.temporal.io/server/chasm/lib/nexusoperation/TestCancellationInvocationTaskHandler_HTTP/failurefailureTestOperatorServiceMetadata · introduced test · go.temporal.io/server/common/api/TestOperatorServiceMetadataTestOperatorServiceMetad…TestWorkflowServiceMetadata · introduced test · go.temporal.io/server/common/api/TestWorkflowServiceMetadataTestWorkflowServiceMetad…TestHandlerErrorRetryBehavior · introduced test · go.temporal.io/server/common/nexus/nexusrpc/TestHandlerErrorRetryBehaviorTestHandlerErrorRetryBeh…failure · introduced test · go.temporal.io/server/components/nexusoperations/TestProcessCancelationTask/failurefailureTestDispatchNexusTaskByEndpoint_NotFound_NonRetryable · introduced test · go.temporal.io/server/service/frontend/TestDispatchNexusTaskByEndpoint_NotFound_NonRetryableTestDispatchNexusTaskByE…Focused concept · failure_converter.go ×1 · 5 introduced LOCfailure_converter.go ×1

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 5 introduced LOC across 2 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/common/nexus/nexusrpc/failure_converter.go 3 introduced LOC · 1 range

Open complete file

206 ret := true
207 return &ret
208 > case nexus.HandlerErrorRetryBehaviorNonRetryable: failure_converter.go
209 > ret := false
210 > return &ret
211 }
212 return nil
go.temporal.io/server/common/nexus/nexusrpc/server.go 2 introduced LOC · 1 range

Open complete file

182 if handlerError != nil {
183 switch handlerError.RetryBehavior {
184 > case nexus.HandlerErrorRetryBehaviorNonRetryable: server.go
185 > writer.Header().Set(headerRetryable, "false")
186 case nexus.HandlerErrorRetryBehaviorRetryable:
187 writer.Header().Set(headerRetryable, "true")