Skip to content

Commit

Permalink
Rename query_duration_seconds to query_file_duration_seconds (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanbujnak authored Nov 7, 2023
1 parent b90f840 commit 1e1f5af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pex_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type PexSearchResult struct {
// The assets which the query matched against.
Matches []*PexSearchMatch `json:"matches"`

QueryDurationSeconds float32 `json:"query_duration_seconds"`
QueryFileDurationSeconds float32 `json:"query_file_duration_seconds"`
}

type PexSearchAsset struct {
Expand Down
2 changes: 1 addition & 1 deletion private_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type PrivateSearchResult struct {
// The assets which the query matched against.
Matches []*PrivateSearchMatch `json:"matches"`

QueryDurationSeconds float32 `json:"query_duration_seconds"`
QueryFileDurationSeconds float32 `json:"query_file_duration_seconds"`
}

// PrivateSearchMatch contains detailed information about the match,
Expand Down

0 comments on commit 1e1f5af

Please sign in to comment.