Can't enforce size limit or downgrades from future versions could break.
This commit is contained in:
parent
bf505ed816
commit
c5995f2e27
|
@ -744,7 +744,7 @@ inline Tuple Codec<Reference<IBackupContainer>>::pack(Reference<IBackupContainer
|
||||||
}
|
}
|
||||||
template <>
|
template <>
|
||||||
inline Reference<IBackupContainer> Codec<Reference<IBackupContainer>>::unpack(Tuple const& val) {
|
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();
|
auto url = val.getString(0).toString();
|
||||||
|
|
||||||
Optional<std::string> encryptionKeyFileName;
|
Optional<std::string> encryptionKeyFileName;
|
||||||
|
|
Loading…
Reference in New Issue