def checkJobStatus()

in src/get-feedback.py [0:0]


    def checkJobStatus(self, labelVerificationJobName):
        sageMakerClient = AwsHelper().getClient("sagemaker", self.inputParameters["awsRegion"])
        response = sageMakerClient.describe_labeling_job(LabelingJobName=labelVerificationJobName)
        print("Job: {}, Status: {}".format(response["LabelingJobName"], response["LabelingJobStatus"]))
        jobStatus = response["LabelingJobStatus"]
        while (jobStatus == "InProgress"):
            time.sleep(10)
            response = sageMakerClient.describe_labeling_job(LabelingJobName=labelVerificationJobName)
            print("Job: {}, Status: {}".format(response["LabelingJobName"], response["LabelingJobStatus"]))
            jobStatus = response["LabelingJobStatus"]