Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mon: fix the build with boost 1.59 #5804

Merged
1 commit merged into from
Sep 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mon/OSDMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6599,8 +6599,8 @@ bool OSDMonitor::prepare_command_impl(MonOpRequestRef op,
goto reply;
}

int8_t fast_read_param;
cmd_getval(g_ceph_context, cmdmap, "fast_read", fast_read_param, int8_t(-1));
int64_t fast_read_param;
cmd_getval(g_ceph_context, cmdmap, "fast_read", fast_read_param, int64_t(-1));
FastReadType fast_read = FAST_READ_DEFAULT;
if (fast_read_param == 0)
fast_read = FAST_READ_OFF;
Expand Down