Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
60e0abb5
Commit
60e0abb5
authored
Nov 05, 2015
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whisper: fix datarace in expiration test
parent
e3f36d97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
whisper_test.go
whisper/whisper_test.go
+11
-2
No files found.
whisper/whisper_test.go
View file @
60e0abb5
...
...
@@ -189,13 +189,22 @@ func TestMessageExpiration(t *testing.T) {
t
.
Fatalf
(
"failed to inject message: %v"
,
err
)
}
// Check that the message is inside the cache
if
_
,
ok
:=
node
.
messages
[
envelope
.
Hash
()];
!
ok
{
node
.
poolMu
.
RLock
()
_
,
found
:=
node
.
messages
[
envelope
.
Hash
()]
node
.
poolMu
.
RUnlock
()
if
!
found
{
t
.
Fatalf
(
"message not found in cache"
)
}
// Wait for expiration and check cache again
time
.
Sleep
(
time
.
Second
)
// wait for expiration
time
.
Sleep
(
expirationCycle
)
// wait for cleanup cycle
if
_
,
ok
:=
node
.
messages
[
envelope
.
Hash
()];
ok
{
node
.
poolMu
.
RLock
()
_
,
found
=
node
.
messages
[
envelope
.
Hash
()]
node
.
poolMu
.
RUnlock
()
if
found
{
t
.
Fatalf
(
"message not expired from cache"
)
}
}
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