Skip to content

Commit c5cc840

Browse files
committed
fix(apply): bad API endpoint for apply over HTTP
1 parent 384fdb2 commit c5cc840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/transform.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (m *TransformMethods) Apply(ctx context.Context, p *ApplyParams) (*ApplyRes
6363
res := &ApplyResult{}
6464

6565
if m.inst.http != nil {
66-
err = m.inst.http.Call(ctx, "TransformMethods.Apply", p, res)
66+
err = m.inst.http.Call(ctx, AEApply, p, res)
6767
if err != nil {
6868
return nil, err
6969
}

0 commit comments

Comments
 (0)