This commit is contained in:
chenjiekun
2023-03-02 20:18:09 +08:00
parent a077ec7a20
commit 81dbcdca32
9 changed files with 35 additions and 108 deletions

View File

@@ -86,9 +86,6 @@ func (w *WebsocketContext) IsCloneable() bool {
}
func (w *WebsocketContext) Clone() (eoscContext.EoContext, error) {
if !w.IsCloneable() {
return nil, fmt.Errorf("%s %w", "WebsocketContext", eoscContext.ErrEoCtxUnCloneable)
}
//TODO
return nil, nil
return nil, fmt.Errorf("%s %w", "WebsocketContext", eoscContext.ErrEoCtxUnCloneable)
}