Can't enforce size limit or downgrades from future versions could break.

This commit is contained in:
Steve Atherton 2022-03-29 23:53:45 -07:00 committed by GitHub
parent bf505ed816
commit c5995f2e27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ inline Tuple Codec<Reference<IBackupContainer>>::pack(Reference<IBackupContainer
}
template <>
inline Reference<IBackupContainer> Codec<Reference<IBackupContainer>>::unpack(Tuple const& val) {
ASSERT(val.size() >= 1 && val.size() <= 3);
ASSERT(val.size() >= 1);
auto url = val.getString(0).toString();
Optional<std::string> encryptionKeyFileName;