You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A service bus subscription rule (visible in Service Bus Explorer) that looks like:
sys.Label = 'TestSessionStarted'
Actual Behavior
Subscription rule contains every possible correlation filter with most attempting to match an empty string:
sys.CorrelationId = '' And sys.MessageId = '' And sys.To = '' And sys.ReplyTo = '' And sys.Label = 'TestSessionStarted' And sys.SessionId = '' And sys.ReplyToSessionId = '' And sys.ContentType = ''
No messages will match.
Steps to Reproduce
terraform apply
The text was updated successfully, but these errors were encountered:
stack72
added a commit
to stack72/terraform-provider-azurerm
that referenced
this issue
Jul 13, 2018
…ional values
Fixes: hashicorp#1537
This was a simple fix to make sure that we were not passing empty strings
to the API. When passing empty strings, it was including those strings
in the subscription rule
We should only set the part of the rule if it is required as, technically,
a rule of sys.To = `` is actually value
…ional values (#1565)
Fixes: #1537
This was a simple fix to make sure that we were not passing empty strings
to the API. When passing empty strings, it was including those strings
in the subscription rule
We should only set the part of the rule if it is required as, technically,
a rule of sys.To = `` is actually value
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks!
ghost
locked and limited conversation to collaborators
Mar 30, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Community Note
Terraform Version
Terraform Configuration Files
Expected Behavior
A service bus subscription rule (visible in Service Bus Explorer) that looks like:
Actual Behavior
Subscription rule contains every possible correlation filter with most attempting to match an empty string:
No messages will match.
Steps to Reproduce
terraform apply
The text was updated successfully, but these errors were encountered: