Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1421#discussion_r53555684 --- Diff: systemvm/patches/debian/config/opt/cloud/bin/merge.py --- @@ -272,5 +275,10 @@ def setPath(self, path): def __moveFile(self, origPath, path): if not os.path.exists(path): os.makedirs(path) - timestamp = str(int(round(time.time()))) - os.rename(origPath, path + "/" + self.fileName + "." + timestamp) + + zipped_file_name = path + "/" + self.fileName + "." + str(uuid.uuid4()) + ".gz" --- End diff -- would it make sense to have the timestamp in the filename as well? for easy ordering
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---