Skip to content

Sonar refactoring - jsdoc #465

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

Merged
merged 1 commit into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/appmixer/aws/aws-commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ module.exports = {
* Create and subscribe topic to AWS SNS.
* @param {Context} context
* @param {Object} payload
* @param {Object} payload.topicPrefix
* @param {Object} payload.eventPrefix
* @param {Object} payload.eventType
* @param {string} payload.topicPrefix
* @param {string} payload.eventPrefix
* @param {string} payload.eventType
* @return {Promise}
*/
async registerWebhook(context, payload) {
Expand Down
2 changes: 1 addition & 1 deletion src/appmixer/kafka/connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const loadConsumerOptions = function(context) {
* @param {Object} auth Authentication configuration
* @param {string} connId Optional connection ID
* @param {number} partitionsConsumedConcurrently Number of partitions to consume concurrently (default: 3)
* @returns {string} The connection ID
* @returns {Promise<string>} The connection ID of the created consumer
*/
const addConsumer = async (
context, topics, flowId, componentId, groupId, fromBeginning, auth, connId, partitionsConsumedConcurrently = 3
Expand Down