We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9106ebc commit 4ac4181Copy full SHA for 4ac4181
kotlin/services/rekognition/src/main/kotlin/com/kotlin/rekognition/VideoDetectFaces.kt
@@ -106,7 +106,7 @@ suspend fun getFaceResults() {
106
while (!finished) {
107
response = rekClient.getFaceDetection(recognitionRequest)
108
status = response.jobStatus.toString()
109
- if (status.compareTo("SUCCEEDED") == 0) {
+ if (status.compareTo("Succeeded") == 0) {
110
finished = true
111
} else {
112
println("$yy status is: $status")
0 commit comments