Skip to content

Commit

Permalink
fix(apply): bad API endpoint for apply over HTTP
Browse files Browse the repository at this point in the history
  • Loading branch information
Arqu committed Feb 7, 2021
1 parent 384fdb2 commit c5cc840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (m *TransformMethods) Apply(ctx context.Context, p *ApplyParams) (*ApplyRes
res := &ApplyResult{}

if m.inst.http != nil {
err = m.inst.http.Call(ctx, "TransformMethods.Apply", p, res)
err = m.inst.http.Call(ctx, AEApply, p, res)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit c5cc840

Please sign in to comment.