Skip to content

Commit b17f9c5

Browse files
fix: change signature of xlaModel.Save in disabled
1 parent 78628f6 commit b17f9c5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pipelineBackends/model_xla_disabled.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
package pipelineBackends
44

55
import (
6+
"io"
7+
68
"github.com/knights-analytics/hugot/options"
79
)
810

@@ -22,6 +24,6 @@ func runXLASessionOnBatch(_ *PipelineBatch, _ *BasePipeline) error {
2224
return nil
2325
}
2426

25-
func (xlaModel *XLAModel) Save(_ string) error {
27+
func (xlaModel *XLAModel) Save(_ io.WriteCloser) error {
2628
return nil
2729
}

0 commit comments

Comments
 (0)