Merge pull request #7486 from sfc-gh-ajbeamon/fix-missing-return

Add missing return statement in fdbcli gettenant command error case
This commit is contained in:
A.J. Beamon 2022-06-29 09:42:09 -07:00 committed by GitHub
commit 2e9fc52200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -273,6 +273,8 @@ ACTOR Future<bool> getTenantCommandActor(Reference<IDatabase> db, std::vector<St
} else {
fprintf(stderr, "ERROR: %s\n", errorStr.c_str());
}
return false;
}
}
}