DeactivationSolved

Hi 

(noob in python and developing)

So I implemented a hardware locked license for my Python executable. This is working. But when I revoke the key through my dashboard the program can still be run. The program makes a call to ta.is_genuine_ex(DAYS_BETWEEN_CHECKS, GRACE_PERIOD_LENGTH, True)   to check if the user is a genuine user before the program can be executed. I expected that if I revoke the key this function would automatically deactivate the license and the user wouldn't be a genuine user. What am I missing here?

Greetings

Gilles 

Answer

Revoking is not immediate. It will happen in DAYS_BETWEEN_CHECKS days. This is perfectly normal, and the correct way to do things. Don't hammer the servers on every start of your app.

Thanks for quick answer ! This license service is awesome and very comprehensive