Revert "Codesign: Versioning code to support older branches"

This reverts commit 9d172f007e.

Got a second thought and remembered why it was not done in the first place.
The issue here is that the server needs to communicate codesign result back
and that must happen within the new protocol. So if the client talks old
protocol it is possible to receieve data from it, but is not possible to
communicate result back to it.
This commit is contained in:
Sergey Sharybin 2020-11-13 11:35:04 +01:00
parent a8f9a24939
commit a2e00236d0
1 changed files with 0 additions and 9 deletions

View File

@ -76,15 +76,6 @@ class ArchiveState:
except json.decoder.JSONDecodeError:
raise ArchiveStateError('Error parsing JSON')
# NOTE: Compatibility code with older codesign code from times when client
# did not use JSON for the archive indicator. After all branches has codesign
# merged this code should be removed.
if type(object_as_dict) == int:
result = cls()
result.file_size = int(object_as_dict)
result.error_message = ''
return result
return cls(**object_as_dict)
@classmethod