Merge pull request #10526 from sfc-gh-yajin/mark-cp-rare-1

SNOW-XXXXXX Mark a rare code probe as rare
This commit is contained in:
A.J. Beamon 2023-06-21 09:41:29 -07:00 committed by GitHub
commit 728b847bd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ struct ConfigureTenantImpl {
state Optional<MetaclusterTenantMapEntry> tenantEntry = wait(tryGetTenantTransaction(tr, self->tenantName));
if (!tenantEntry.present()) {
CODE_PROBE(true, "Configure tenant state for non-existent tenant");
CODE_PROBE(true, "Configure tenant state for non-existent tenant", probe::decoration::rare);
throw tenant_not_found();
}