Skip to content

Commit 09ed594

Browse files
authored
Fix resolution of queue-name in output binding (#187)
1 parent f25ffe4 commit 09ed594

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

java-library/src/main/java/com/microsoft/azure/functions/rabbitmq/annotation/RabbitMQOutput.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
* output.setValue(message);
3535
* }
3636
* </pre>
37-
*
3837
*/
3938

4039
@Retention(RetentionPolicy.RUNTIME)

java-library/src/main/java/com/microsoft/azure/functions/rabbitmq/annotation/RabbitMQTrigger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* </p>
2222
*
2323
* <p>
24-
* Example function that uses a RabbitMQ trigger:
24+
* Example function that uses a RabbitMQ trigger binding:
2525
* </p>
2626
*
2727
* <pre>

src/RabbitMQAttribute.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public sealed class RabbitMQAttribute : Attribute
2222
/// <summary>
2323
/// Gets or sets the RabbitMQ queue name.
2424
/// </summary>
25+
[AutoResolve]
2526
public string QueueName { get; set; }
2627

2728
/// <summary>

0 commit comments

Comments
 (0)