Skip to content

Commit

Permalink
fix clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
empiredan committed Nov 11, 2024
1 parent 133b7cc commit 95ac051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/server_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ void server_state::update_create_follower_app_status(message_ex *msg,
const std::string &new_status,
std::shared_ptr<app_state> &app)
{
auto ainfo = *(reinterpret_cast<app_info *>(app.get()));
app_info ainfo = *app;
ainfo.envs[duplication_constants::kDuplicationEnvMasterCreateFollowerAppStatusKey] = new_status;
auto app_path = get_app_path(*app);
do_update_app_info(
Expand Down

0 comments on commit 95ac051

Please sign in to comment.