Skip to content

Commit e0dc967

Browse files
authored
support nil option in NewCommonVmCtx (#1909)
1 parent 5de7c2a commit e0dc967

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

plugins/wasm-go/pkg/wrapper/plugin_wrapper.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,13 @@ func parseEmptyPluginConfig[PluginConfig any](gjson.Result, *PluginConfig, Log)
258258

259259
func NewCommonVmCtx[PluginConfig any](pluginName string, options ...CtxOption[PluginConfig]) *CommonVmCtx[PluginConfig] {
260260
logger := &DefaultLog{pluginName, "nil"}
261-
opts := append([]CtxOption[PluginConfig]{WithLogger[PluginConfig](logger)}, options...)
261+
opts := []CtxOption[PluginConfig]{WithLogger[PluginConfig](logger)}
262+
for _, opt := range options {
263+
if opt == nil {
264+
continue
265+
}
266+
opts = append(opts, opt)
267+
}
262268
return NewCommonVmCtxWithOptions(pluginName, opts...)
263269
}
264270

0 commit comments

Comments
 (0)