-
Notifications
You must be signed in to change notification settings - Fork 1
SWI-3339 Regenerate using OpenAPI Generator v7.0.0 #95
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
Conversation
.github/workflows/maven.yml
Outdated
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.
Is there a reason we're downgrading the Java version and setup action version?
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.
hmm, idk why this got changed. will revert.
api/openapi.yaml
Outdated
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.
do we need this file any more? I thought we were going to use only bandwidth.yml going forward
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.
This is autogenerated by the openapi-generator - its listed in the .openapi-generator/FILES
file
@@ -209,10 +209,8 @@ public void testConferenceRecordings() throws Exception { | |||
|
|||
Boolean testRecordingStatus = false; | |||
for (int i = 0; i < MAX_RETRIES; i++) { | |||
while (!testRecordingStatus) { |
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.
This is always going to go for the max amount of time now right? And once it hits MAX_RETRIES, the testRecordingStatus might still not be true. Do we need to change some of the logic here?
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.
yes, it will retry for the max amount of times
with that while
statement it was actually infinitely looping so that wasnt good 😅
we need to just remove this and other integration tests going forward, but thats a seperate ticket
No description provided.