Skip to content

Commit 536fe50

Browse files
committed
expand_query to execute_query
1 parent 638978e commit 536fe50

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

site/src/selector.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -412,23 +412,23 @@ impl SiteCtxt {
412412
query: Query,
413413
artifact_ids: Arc<Vec<ArtifactId>>,
414414
) -> Result<Vec<SeriesResponse<StatisticSeries>>, String> {
415-
StatisticSeries::expand_query(artifact_ids.clone(), self, query.clone()).await
415+
StatisticSeries::execute_query(artifact_ids.clone(), self, query.clone()).await
416416
}
417417

418418
pub async fn self_profile(
419419
&self,
420420
query: Query,
421421
artifact_ids: Arc<Vec<ArtifactId>>,
422422
) -> Result<Vec<SeriesResponse<SelfProfile>>, String> {
423-
SelfProfile::expand_query(artifact_ids, self, query.clone()).await
423+
SelfProfile::execute_query(artifact_ids, self, query.clone()).await
424424
}
425425

426426
pub async fn self_profile_query_time(
427427
&self,
428428
query: Query,
429429
artifact_ids: Arc<Vec<ArtifactId>>,
430430
) -> Result<Vec<SeriesResponse<SelfProfileQueryTime>>, String> {
431-
SelfProfileQueryTime::expand_query(artifact_ids, self, query.clone()).await
431+
SelfProfileQueryTime::execute_query(artifact_ids, self, query.clone()).await
432432
}
433433
}
434434

@@ -438,7 +438,7 @@ pub struct StatisticSeries {
438438
}
439439

440440
impl StatisticSeries {
441-
async fn expand_query(
441+
async fn execute_query(
442442
artifact_ids: Arc<Vec<ArtifactId>>,
443443
ctxt: &SiteCtxt,
444444
mut query: Query,
@@ -600,7 +600,7 @@ impl SelfProfile {
600600
}
601601
}
602602

603-
async fn expand_query(
603+
async fn execute_query(
604604
artifact_ids: Arc<Vec<ArtifactId>>,
605605
ctxt: &SiteCtxt,
606606
mut query: Query,
@@ -686,7 +686,7 @@ impl SelfProfileQueryTime {
686686
}
687687
}
688688

689-
async fn expand_query(
689+
async fn execute_query(
690690
artifact_ids: Arc<Vec<ArtifactId>>,
691691
ctxt: &SiteCtxt,
692692
mut query: Query,

0 commit comments

Comments
 (0)