Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE3
/
storagedriver
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
040df5cc
authored
Jan 23, 2022
by
Szeberényi Imre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checksum fix
parent
fc13dc82
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
disk.py
+3
-0
No files found.
disk.py
View file @
040df5cc
...
@@ -59,9 +59,12 @@ class Disk(object):
...
@@ -59,9 +59,12 @@ class Disk(object):
@property
@property
def
checksum
(
self
,
blocksize
=
65536
):
def
checksum
(
self
,
blocksize
=
65536
):
logging
.
debug
(
"Generating checksum for
%
s"
,
self
.
get_path
())
hash
=
md5
()
hash
=
md5
()
with
open
(
self
.
get_path
(),
"rb"
)
as
f
:
with
open
(
self
.
get_path
(),
"rb"
)
as
f
:
for
block
in
iter
(
lambda
:
f
.
read
(
blocksize
),
""
):
for
block
in
iter
(
lambda
:
f
.
read
(
blocksize
),
""
):
if
len
(
block
)
==
0
:
break
hash
.
update
(
block
)
hash
.
update
(
block
)
return
hash
.
hexdigest
()
return
hash
.
hexdigest
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment