Skip to content

Commit

Permalink
back to legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Jan 29, 2024
1 parent 29bf943 commit e022ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axiom/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (c *axiomClient) do(ctx context.Context, rawURL string, id int, body, v any
func (c *axiomClient) query(ctx context.Context, id int, aplQuery string, noCache bool) (*aplQueryResponse, *http.Response, error) {
uri := *c.apiURL
uri.Path = path.Join(uri.Path, "v1/datasets/_apl")
uri.RawQuery = fmt.Sprintf("nocache=%t&format=tabular", noCache)
uri.RawQuery = fmt.Sprintf("nocache=%t&format=legacy", noCache)

body := struct {
APL string `json:"apl"`
Expand Down

0 comments on commit e022ef9

Please sign in to comment.