Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
tsai
StackExchange.Redis
Commits
efbc2dc8
Commit
efbc2dc8
authored
Jul 05, 2018
by
Nick Craver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Streams: fix pending message tests
Was incorrectly failing when completing near-instantly with a local server.
parent
19cad7d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Streams.cs
StackExchange.Redis.Tests/Streams.cs
+4
-1
No files found.
StackExchange.Redis.Tests/Streams.cs
View file @
efbc2dc8
using
System
;
using
System.Linq
;
using
System.Threading.Tasks
;
using
Xunit
;
using
Xunit.Abstractions
;
...
...
@@ -481,7 +482,7 @@ public void StreamConsumerGroupViewPendingInfoSummary()
}
[
Fact
]
public
void
StreamConsumerGroupViewPendingMessageInfo
()
public
async
Task
StreamConsumerGroupViewPendingMessageInfo
()
{
var
key
=
GetUniqueKey
(
"group_pending_messages"
);
var
groupName
=
"test_group"
;
...
...
@@ -507,6 +508,8 @@ public void StreamConsumerGroupViewPendingMessageInfo()
// Read the remaining messages into the second consumer.
var
consumer2Messages
=
db
.
StreamReadGroup
(
key
,
groupName
,
consumer2
);
await
Task
.
Delay
(
10
);
// Get the pending info about the messages themselves.
var
pendingMessageInfoList
=
db
.
StreamPendingMessages
(
key
,
groupName
,
10
,
RedisValue
.
Null
);
...
...
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