Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CAP
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
CAP
Commits
f1304ceb
Commit
f1304ceb
authored
Sep 30, 2017
by
Savorboard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix spelling mistake
parent
a3807b6a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
PublishQueueExecutor.cs
src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs
+1
-1
SqlServerStorageConnection.cs
src/DotNetCore.CAP.SqlServer/SqlServerStorageConnection.cs
+1
-1
ObjectMethodExecutor.cs
...CAP/Internal/ObjectMethodExecutor/ObjectMethodExecutor.cs
+2
-0
MessageContext.cs
src/DotNetCore.CAP/MessageContext.cs
+5
-0
No files found.
src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs
View file @
f1304ceb
...
...
@@ -49,7 +49,7 @@ namespace DotNetCore.CAP.Kafka
catch
(
Exception
ex
)
{
_logger
.
LogError
(
$"kafka topic message [
{
keyName
}
] has be
n
n raised an exception of sending. the exception is:
{
ex
.
Message
}
"
);
$"kafka topic message [
{
keyName
}
] has be
e
n raised an exception of sending. the exception is:
{
ex
.
Message
}
"
);
return
Task
.
FromResult
(
OperateResult
.
Failed
(
ex
));
}
...
...
src/DotNetCore.CAP.SqlServer/SqlServerStorageConnection.cs
View file @
f1304ceb
...
...
@@ -76,7 +76,7 @@ OUTPUT DELETED.MessageId,DELETED.[MessageType];";
}
}
// CapRece
vi
edMessage
// CapRece
iv
edMessage
public
async
Task
StoreReceivedMessageAsync
(
CapReceivedMessage
message
)
{
...
...
src/DotNetCore.CAP/Internal/ObjectMethodExecutor/ObjectMethodExecutor.cs
View file @
f1304ceb
...
...
@@ -6,10 +6,12 @@ using System.Collections.Generic;
using
System.Linq.Expressions
;
using
System.Reflection
;
// ReSharper disable once CheckNamespace
namespace
Microsoft.Extensions.Internal
{
internal
class
ObjectMethodExecutor
{
// ReSharper disable once InconsistentNaming
private
static
readonly
ConstructorInfo
_objectMethodExecutorAwaitableConstructor
=
typeof
(
ObjectMethodExecutorAwaitable
).
GetConstructor
(
new
[]
{
...
...
src/DotNetCore.CAP/MessageContext.cs
View file @
f1304ceb
...
...
@@ -7,5 +7,10 @@
public
string
Name
{
get
;
set
;
}
public
string
Content
{
get
;
set
;
}
public
override
string
ToString
()
{
return
$"Group:
{
Group
}
, Name:
{
Name
}
, Content:
{
Content
}
"
;
}
}
}
\ No newline at end of file
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