This is an automated email from the git hooks/post-receive script.
teigland pushed a commit to branch master in repository sanlock.
commit e4726e4c49e3a2a46c47814f9f8ad8598c4bc0ae Author: Pavel Gashev pagure@pagure.io Date: Mon May 8 13:45:56 2017 -0500
sanlock: client acquire doesn't support orphan leases --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.c b/src/main.c index 7e905a9..92669ff 100644 --- a/src/main.c +++ b/src/main.c @@ -2664,7 +2664,7 @@ static int do_client(void) case ACT_ACQUIRE: log_tool("acquire pid %d", com.pid); flags |= com.orphan ? SANLK_ACQUIRE_ORPHAN : 0; - rv = sanlock_acquire(-1, com.pid, 0, com.res_count, com.res_args, NULL); + rv = sanlock_acquire(-1, com.pid, flags, com.res_count, com.res_args, NULL); log_tool("acquire done %d", rv); break;