Use semicolon for consistency with all other spans. (#7201)

This commit is contained in:
Ray Jenkins 2022-05-20 10:18:00 -05:00 committed by GitHub
parent d1efc05a9b
commit dcd771bd07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1408,7 +1408,7 @@ void updateProcessStats(StorageServer* self) {
#endif
ACTOR Future<Version> waitForVersionActor(StorageServer* data, Version version, SpanContext spanContext) {
state Span span("SS.WaitForVersion"_loc, spanContext);
state Span span("SS:WaitForVersion"_loc, spanContext);
choose {
when(wait(data->version.whenAtLeast(version))) {
// FIXME: A bunch of these can block with or without the following delay 0.