-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add silent flag to update message activity #116
Add silent flag to update message activity #116
Conversation
3387921
to
4873735
Compare
docs/reference.md
Outdated
@@ -861,7 +861,8 @@ Update an existing message into a stream. Returns the new updated message. | |||
Key | Type | Required | | |||
------------ | -------| --- | | |||
[message-id](#update-message-id) | String | Yes | | |||
[content](#content) | String/Object| Yes | | |||
[content](#content) | String/Object | Yes | | |||
silent | Boolean | No | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you describe "silent" property, and link it here ([silent](# silent)) ?
} | ||
|
||
@Test | ||
void updateMessageWithTemplateSuccessfull() throws IOException, ProcessingException { | ||
void updateMessageWithoutSilentSuccessfully() throws IOException, ProcessingException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we use ParameterizedTest for the two tests? The argument would be the workflow file path and the expected "silent" boolean value.
3588112
to
402e43b
Compare
The silent flag in the update message service was included in the new BDK release, this commit is to support the same in WDK.
402e43b
to
3415817
Compare
@@ -18,6 +18,9 @@ | |||
|
|||
import com.github.fge.jsonschema.core.exceptions.ProcessingException; | |||
import org.junit.jupiter.api.Test; | |||
import org.junit.jupiter.params.ParameterizedTest; | |||
import org.junit.jupiter.params.provider.CsvSource; | |||
import org.junit.jupiter.params.provider.MethodSource; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this import is not used
The silent flag in the update message service was included
in the new BDK release, this commit is to support the same
in WDK.
Description
Please put here the intent of your pull request.
Dependencies
List the other pull requests that should be merged before/along this one.
Checklist