Skip to content

Commit

Permalink
fix: missing var
Browse files Browse the repository at this point in the history
  • Loading branch information
lausannel authored Jul 9, 2024
1 parent 9994beb commit a1c967a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Apache.IoTDB/SessionPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public async Task<Client> Reconnect(Client originalClient = null, CancellationTo
var client = await CreateAndOpen(_endPoints[j].Ip, _endPoints[j].Port, _enableRpcCompression, _timeout, cancellationToken);
return client;
}
catch (Exception)
catch (Exception e)
{
if (_debugMode)
{
Expand Down

0 comments on commit a1c967a

Please sign in to comment.