Skip to content

Commit 1b89d8b

Browse files
committed
YT-22593: Migrate TString to std::string in yt/yt/library/auth
commit_hash:6220afa4e52e00df3faddb6a2fc687fe92e1962c
1 parent 9e1838e commit 1b89d8b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

yt/yt/library/auth/credentials_injecting_channel.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class TTokenInjectingChannel
119119
}
120120

121121
private:
122-
const TString Token_;
122+
const std::string Token_;
123123
};
124124

125125
IChannelPtr CreateTokenInjectingChannel(
@@ -158,8 +158,8 @@ class TCookieInjectingChannel
158158
}
159159

160160
private:
161-
const TString SessionId_;
162-
const TString SslSessionId_;
161+
const std::string SessionId_;
162+
const std::string SslSessionId_;
163163
};
164164

165165
IChannelPtr CreateCookieInjectingChannel(
@@ -233,7 +233,7 @@ class TUserTicketInjectingChannel
233233
}
234234

235235
private:
236-
const TString UserTicket_;
236+
const std::string UserTicket_;
237237
};
238238

239239
NRpc::IChannelPtr CreateUserTicketInjectingChannel(

0 commit comments

Comments
 (0)