Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-ds-measure
Commits
a5555908
Unverified
Commit
a5555908
authored
Aug 30, 2019
by
Michael Muré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix GetSize calls reported as Has
parent
7bcedfd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
measure.go
measure.go
+2
-1
No files found.
measure.go
View file @
a5555908
...
...
@@ -170,10 +170,11 @@ func (m *measure) Has(key datastore.Key) (exists bool, err error) {
func
(
m
*
measure
)
GetSize
(
key
datastore
.
Key
)
(
size
int
,
err
error
)
{
defer
recordLatency
(
m
.
getsizeLatency
,
time
.
Now
())
m
.
has
Num
.
Inc
()
m
.
getsize
Num
.
Inc
()
size
,
err
=
m
.
backend
.
GetSize
(
key
)
switch
err
{
case
nil
,
datastore
.
ErrNotFound
:
// Not really an error.
default
:
m
.
getsizeErr
.
Inc
()
}
...
...
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