Skip to content

Commit

Permalink
Use a space instead of a / in profile task title for GenQuery.
Browse files Browse the repository at this point in the history
Targets start with `//` so using `/` was quite confusing.

PiperOrigin-RevId: 354913333
  • Loading branch information
meisterT authored and copybara-github committed Feb 1, 2021
1 parent ba60c0b commit 207283b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public ConfiguredTarget create(RuleContext ruleContext)

GenQueryResult result;
try (SilentCloseable c =
Profiler.instance().profile("GenQuery.executeQuery/" + ruleContext.getLabel())) {
Profiler.instance().profile("GenQuery.executeQuery " + ruleContext.getLabel())) {
result =
executeQuery(
ruleContext,
Expand Down

0 comments on commit 207283b

Please sign in to comment.