Skip to content

Commit

Permalink
test: 0.4.30 use kill rather than kill_with signal - no handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jul 5, 2024
1 parent 9cb6e53 commit 2e358e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion installer/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ const (
var packages = map[string]packageInfo{
FFIPackage: {
libName: "libpact_ffi",
version: "0.4.30",
version: "0.4.31",
semverRange: ">= 0.4.0, < 1.0.0",
},
}
Expand Down
2 changes: 1 addition & 1 deletion internal/native/message_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ func (m *MessageServer) UsingPlugin(pluginName string, pluginVersion string) err
defer free(cPluginVersion)

r := C.pactffi_using_plugin(m.messagePact.handle, cPluginName, cPluginVersion)
InstallSignalHandlers()
// InstallSignalHandlers()

// 1 - A general panic was caught.
// 2 - Failed to load the plugin.
Expand Down
2 changes: 1 addition & 1 deletion internal/native/mock_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ func (m *MockServer) UsingPlugin(pluginName string, pluginVersion string) error
defer free(cPluginVersion)

r := C.pactffi_using_plugin(m.pact.handle, cPluginName, cPluginVersion)
InstallSignalHandlers()
// InstallSignalHandlers()

// 1 - A general panic was caught.
// 2 - Failed to load the plugin.
Expand Down
2 changes: 1 addition & 1 deletion internal/native/verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (v *Verifier) SetPublishOptions(providerVersion string, buildUrl string, pr

func (v *Verifier) Execute() error {
// TODO: Validate
InstallSignalHandlers()
// InstallSignalHandlers()
result := C.pactffi_verifier_execute(v.handle)

/// | Error | Description |
Expand Down

0 comments on commit 2e358e5

Please sign in to comment.