Skip to content

Commit

Permalink
Fix an issue spotted after code landed where error not propagated due…
Browse files Browse the repository at this point in the history
… to missing ?
  • Loading branch information
locka99 committed Dec 20, 2021
1 parent b2c2318 commit e3046aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ impl Client {
session.connect_and_activate().map_err(|err| {
error!("Got an error while creating the default session - {}", err);
err
});
})?;
}

Ok(session)
Expand Down

0 comments on commit e3046aa

Please sign in to comment.