[CP] Add more logs for dropped tenant check information

This commit is contained in:
JiahuaChen
2022-08-16 11:50:36 +08:00
committed by wangzelin.wzl
parent 14a6af150b
commit db7a7afe45
4 changed files with 19 additions and 1 deletions

View File

@ -31,6 +31,16 @@ public:
part_values_.reset();
}
TO_STRING_KV(K_(runner_server), K_(part_values));
int assign(const ServerOpInfo &other)
{
int ret = OB_SUCCESS;
if (OB_FAIL(part_values_.assign(other.part_values_))) {
LOG_WARN("assign part_values failed", K(ret), K(other));
} else {
runner_server_ = other.runner_server_;
}
return ret;
}
ObAddr runner_server_;
ObSEArray<PartValuesInfo, 1> part_values_;