-
Notifications
You must be signed in to change notification settings - Fork 98
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
Add possibility to create EventHub namespace with kafka #711
base: master
Are you sure you want to change the base?
Conversation
Hi @thamer-ea ! |
/** | ||
* @return true if kafka enabled for the namespace, false otherwise | ||
*/ | ||
@Beta(Beta.SinceVersion.V1_7_0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't be 1.22 ?
/** | ||
* Properties of kafka resource. | ||
*/ | ||
@JsonProperty(value = "kafkaEnabled") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thamer-ea
did you hand edit this file to add the property to the inner?
|
||
Assert.assertNotNull(namespace); | ||
Assert.assertNotNull(namespace.inner()); | ||
Assert.assertFalse(namespace.isKafkaEnabled()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thamer-ea
As of now the tests are failing with this assertion... Kafka Enabled seems to be false
I want to resolve #548