diff --git a/face_recognition/app/app.py b/face_recognition/app/app.py index 7fdea89..60691cf 100644 --- a/face_recognition/app/app.py +++ b/face_recognition/app/app.py @@ -51,6 +51,7 @@ def new_face(): with open(temporary_pkl_path, 'wb') as file: pickle.dump(face_encoding, file) minioClient.fput_object('users', str(id), temporary_pkl_path) + #return boolean if setup was succesful return jsonify({'id':id}) @app.route('/check_face')