Skip to content
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

fixed the receive code #464

Merged
merged 1 commit into from
Jan 16, 2020
Merged

fixed the receive code #464

merged 1 commit into from
Jan 16, 2020

Conversation

spelluru
Copy link
Collaborator

No description provided.

@@ -40,7 +40,7 @@ await using (EventHubProducerClient producerClient = new EventHubProducerClient(
}
protected async void btnReceive_Click(object sender, EventArgs e)
{
await using (var consumerClient = new EventHubConsumerClient(EventHubConsumerClient.DefaultConsumerGroupName, $"{txtNamespace.Text}.servicebus.windows.net", txtEventHub.Text, new DefaultAzureCredential()))
await using (var consumerClient = new EventHubConsumerClient(EventHubConsumerClient.DefaultConsumerGroupName, txtNamespace.Text, txtEventHub.Text, new DefaultAzureCredential()))
Copy link
Member

@serkantkaraca serkantkaraca Jan 15, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

txtNamespace.Text, [](start = 122, length = 18)

API doc says this needs to be an FQDN. Does user enter FQDN into namespace textbox on the page? #Resolved

Copy link
Collaborator Author

@spelluru spelluru Jan 15, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@serkantkaraca - Yes. User enters the FQDN into the namespace text box now. I had updated the send code and tested it, but forgot to test the receive side. Thanks. #Resolved

Copy link
Member

@serkantkaraca serkantkaraca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@spelluru spelluru merged commit f65204b into Azure:master Jan 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants