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
cdfed7cf
Commit
cdfed7cf
authored
Jul 05, 2018
by
Nick Craver
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into pipelines
parents
33d286b1
efbc2dc8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
Naming.cs
StackExchange.Redis.Tests/Naming.cs
+4
-1
Streams.cs
StackExchange.Redis.Tests/Streams.cs
+4
-1
No files found.
StackExchange.Redis.Tests/Naming.cs
View file @
cdfed7cf
...
...
@@ -87,6 +87,8 @@ public void CheckDatabaseMethodsUseKeys(Type type)
case
nameof
(
IDatabaseAsync
.
ExecuteAsync
):
case
nameof
(
IDatabase
.
ScriptEvaluate
):
case
nameof
(
IDatabaseAsync
.
ScriptEvaluateAsync
):
case
nameof
(
IDatabase
.
StreamRead
):
case
nameof
(
IDatabase
.
StreamReadAsync
):
continue
;
// they're fine, but don't want to widen check to return type
}
...
...
@@ -214,7 +216,8 @@ private void CheckMethod(MethodInfo method, bool isAsync)
||
shortName
.
StartsWith
(
"Set"
)
||
shortName
.
StartsWith
(
"Script"
)
||
shortName
.
StartsWith
(
"SortedSet"
)
||
shortName
.
StartsWith
(
"String"
)
||
shortName
.
StartsWith
(
"String"
)
||
shortName
.
StartsWith
(
"Stream"
)
,
fullName
+
":Prefix"
);
}
...
...
StackExchange.Redis.Tests/Streams.cs
View file @
cdfed7cf
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