This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 988e5ea31a533504dc6318a9ddac05262b30fd7a Author: Daniel Gruno <[email protected]> AuthorDate: Thu Sep 10 14:45:05 2020 +0200 forgot to add magic number --- tools/migrate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/migrate.py b/tools/migrate.py index edab6aa..3968709 100644 --- a/tools/migrate.py +++ b/tools/migrate.py @@ -7,6 +7,9 @@ import time import base64 import hashlib +# Increment this number whenever breaking changes happen in the migration workflow: +MIGRATION_MAGIC_NUMBER = "1" + # ES connections es = None new_es = None
