Skip to content

Commit

Permalink
remaining golint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lostbean committed Dec 5, 2023
1 parent b8e5969 commit 3dd801a
Show file tree
Hide file tree
Showing 12 changed files with 310 additions and 189 deletions.
2 changes: 1 addition & 1 deletion api/golang/http_rest/api_types/api_types.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

142 changes: 71 additions & 71 deletions api/golang/http_rest/core_rest_api/api_container_server.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 29 additions & 29 deletions api/golang/http_rest/websocket_api/websocket_server.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion api/openapi/specs/kurtosis_api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,6 @@ components:
is_skipped:
type: boolean
required:
- position
- instruction_name
- arguments
- executable_instruction
Expand Down
4 changes: 2 additions & 2 deletions engine/server/engine/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ func restApiServer(
// ============================== Engine Management API ======================================
enclaveRuntime, err := restApi.NewEnclaveRuntime(ctx, *enclave_manager, asyncStarlarkLogs, false)
if err != nil {
stacktrace.Propagate(err, "Failed to initialize %T", enclaveRuntime)
return err
newErr := stacktrace.Propagate(err, "Failed to initialize %T", enclaveRuntime)
return newErr
}
enclaveApi.RegisterHandlers(echoRouter, enclaveApi.NewStrictHandler(enclaveRuntime, nil))

Expand Down
Loading

0 comments on commit 3dd801a

Please sign in to comment.