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
073634ff
Unverified
Commit
073634ff
authored
Aug 30, 2019
by
Steven Allen
Committed by
GitHub
Aug 30, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20 from MichaelMure/fix-getsize
fix GetSize calls reported as Has
parents
7bcedfd9
a5555908
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 @
073634ff
...
...
@@ -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