Skip to content

Commit

Permalink
Merge pull request #5156 from aashikam/seo-desc
Browse files Browse the repository at this point in the history
Fix SEO descriptions in messaging modules
  • Loading branch information
praneesha authored Jan 5, 2024
2 parents 6878a37 + e1902b7 commit a504fdf
Show file tree
Hide file tree
Showing 24 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion examples/nats-basic-pub/nats_basic_pub.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates producing a message to a subject in the NATS basic server.
keywords: ballerina, ballerina by example, bbe, nats, basic, server, publish, subscribe
2 changes: 1 addition & 1 deletion examples/nats-basic-reply/nats_basic_reply.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates sending a reply message to a request received by a NATS subject.
keywords: ballerina, ballerina by example, bbe, nats, basic, server, request, reply
2 changes: 1 addition & 1 deletion examples/nats-basic-request/nats_basic_request.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates sending a request to a NATS subject in a basic NATS server.
keywords: ballerina, ballerina by example, bbe, nats, basic, server, request, reply
2 changes: 1 addition & 1 deletion examples/nats-basic-sub/nats_basic_sub.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates consuming messages from a NATS subject in a basic NATS server.
keywords: ballerina, ballerina by example, bbe, nats, basic, server, publish, subscribe
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates producing a message to a NATS subject using a connection with basic authentication.
keywords: ballerina, ballerina by example, bbe, nats, basic, ssl, tls, authentication
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates producing a message to a NATS subject using a secured connection.
keywords: ballerina, ballerina by example, bbe, nats, basic, ssl, tls, authentication
2 changes: 1 addition & 1 deletion examples/nats-jetstream-pub/nats_jetstream_pub.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS JetStream server using Ballerina.
description: This example demonstrates producing a message to a subject in a NATS JetStream server.
keywords: ballerina, ballerina by example, bbe, nats, jetstream, server, publish, subscribe
2 changes: 1 addition & 1 deletion examples/nats-jetstream-sub/nats_jestream_sub.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS JetStream server using Ballerina.
description: This example demonstrates consuming messages from a subject in a NATS JetStream server.
keywords: ballerina, ballerina by example, bbe, nats, jetstream, server, publish, subscribe
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates consuming messages from a NATS subject using a connection with basic authentication.
keywords: ballerina, ballerina by example, bbe, nats, basic, ssl, tls, authentication
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on validating a payload according to the constraints defined in the payload record.
description: This example demonstrates validating a payload according to the constraints defined in the payload record.
keywords: ballerina, ballerina by example, bbe, nats, consumer, listener, service, constraint, validation
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing and consuming a message from a subject in the NATS basic server using Ballerina.
description: This example demonstrates consuming messages from a NATS subject using a secured connection.
keywords: ballerina, ballerina by example, bbe, nats, basic, ssl, tls, authentication
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages using a secured connection.
description: This example demonstrates publishing messages to a RabbitMQ queue using a connection with basic authentication.
keywords: ballerina, ballerina by example, rabbitmq, ssl, tls, authentication, credentials
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on validating a payload according to the constraints defined in the payload record.
description: This example demonstrates validating a payload according to the constraints defined in the payload record.
keywords: ballerina, ballerina by example, bbe, rabbitmq, consumer, listener, service, constraint, validation
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages using a secured connection.
description: This example demonstrates consuming messages from a RabbitMQ queue using a secured connection.
keywords: ballerina, ballerina by example, rabbitmq, ssl, tls, authentication, credentials
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on manually acknowledging the messages consumed from a RabbitMQ queue using Ballerina.
description: This example demonstrates manually acknowledging the messages consumed from a RabbitMQ queue.
keywords: ballerina, ballerina by example, rabbitmq, consumer, bbe, acknowledgment
2 changes: 1 addition & 1 deletion examples/rabbitmq-consumer/rabbitmq_consumer.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages from a RabbitMQ queue in an asynchronous manner using Ballerina.
description: This example demonstrates consuming messages from a RabbitMQ queue in an asynchronous manner.
keywords: ballerina, ballerina by example, rabbitmq, consumer, bbe, service, asynchronous
2 changes: 1 addition & 1 deletion examples/rabbitmq-producer/rabbitmq_producer.metatags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on producing messages to a RabbitMQ queue using Ballerina.
description: This example demonstrates producing messages to a RabbitMQ queue.
keywords: ballerina, ballerina by example, rabbitmq, producer, bbe, client
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on declaring a RabbitMQ queue.
description: This example demonstrates declaring a RabbitMQ queue.
keywords: ballerina, ballerina by example, rabbitmq, queue, bbe, client
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages using a secured connection.
description: This example demonstrates consuming messages from a RabbitMQ queue using a connection with basic authentication.
keywords: ballerina, ballerina by example, rabbitmq, ssl, tls, authentication, credentials
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on validating a payload according to the constraints defined in the payload record.
keywords: ballerina, ballerina by example, bbe, rabbimq, consumer, listener, service, constraint, validation
description: This example demonstrates validating a payload according to the constraints defined in the payload record.
keywords: ballerina, ballerina by example, bbe, rabbitmq, consumer, listener, service, constraint, validation
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages using a secured connection.
description: This example demonstrates consuming messages from a RabbitMQ queue using a secured connection.
keywords: ballerina, ballerina by example, rabbitmq, ssl, tls, authentication, credentials
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on consuming messages using a secured connection.
description: This example demonstrates consuming messages from a RabbitMQ queue synchronously.
keywords: ballerina, ballerina by example, rabbitmq, pull, consumer, client, bbe
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on transactionally acknowledging messages consumed from a RabbitMQ queue using Ballerina.
description: This example demonstrates transactionally acknowledging messages consumed from a RabbitMQ queue.
keywords: ballerina, ballerina by example, rabbitmq, bbe, consumer, transaction
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
description: BBE on transactionally producing messages to a RabbitMQ queue using Ballerina.
description: This example demonstrates transactionally producing messages to a RabbitMQ queue.
keywords: ballerina, ballerina by example, rabbitmq, producer, bbe, transaction

0 comments on commit a504fdf

Please sign in to comment.