|
Currently, renameCollection request is parsed with RenameCollectionCommand's parse function in which there is no validated tenant id can be used for generating namespace for tenant.
auto renameRequest =
|
RenameCollectionCommand::parse(IDLParserErrorContext("renameCollection"),cmdObj);const auto& fromNss = renameRequest.getCommandParameter(); const auto& toNss = renameRequest.getTo();
|
In this ticket, we should have find a way to pass in validated tenant id so that the fromNss and toNss can have tenant id.
|