provisioningHandler.py [431:438]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if topic == "dt/cvra/{deviceid}/cardata".format(deviceid=self.unique_id):
            # Finish the run successfully
            print("Successfully provisioned")
            self.callback_returned = True
        elif (topic == "$aws/provisioning-templates/{}/provision/json/rejected".format(self.template_name) or
            topic == "$aws/certificates/create/json/rejected"):
            print("Failed provisioning")
            self.callback_returned = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



test.py [60:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if topic == "dt/cvra/{deviceid}/cardata".format(deviceid=self.unique_id):
        # Finish the run successfully
        print("Successfully provisioned")
        self.callback_returned = True
    elif (topic == "$aws/provisioning-templates/{}/provision/json/rejected".format(self.template_name) or
        topic == "$aws/certificates/create/json/rejected"):
        print("Failed provisioning")
        self.callback_returned = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



