From af4dc1a43885ac735877b2e8bdd757721509967e Mon Sep 17 00:00:00 2001 From: dbeltran Date: Thu, 20 Jan 2022 11:31:55 +0100 Subject: [PATCH 1/2] 3.13.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 4eba2a62e..c10780c62 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.13.0 +3.13.1 -- GitLab From f86e1e1a359e9f7b7d750594bde3816a8c516149 Mon Sep 17 00:00:00 2001 From: dbeltran Date: Fri, 28 Jan 2022 15:14:34 +0100 Subject: [PATCH 2/2] Fixed an issue with install command, fixed migrate debug message --- autosubmit/autosubmit.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/autosubmit/autosubmit.py b/autosubmit/autosubmit.py index c035dc9c0..f9b7910ae 100644 --- a/autosubmit/autosubmit.py +++ b/autosubmit/autosubmit.py @@ -563,8 +563,9 @@ class Autosubmit: expid = "None" if hasattr(args, 'expid'): expid = args.expid - Autosubmit._init_logs( - args, args.logconsole, args.logfile, expid) + if args.command != "configure" and args.command != "install": + Autosubmit._init_logs( + args, args.logconsole, args.logfile, expid) if args.command == 'run': return Autosubmit.run_experiment(args.expid, args.notransitive, args.update_version, args.start_time, args.start_after, args.run_members) @@ -2581,9 +2582,9 @@ class Autosubmit: backup_files = [] backup_conf = [] error = False + err_message = 'Invalid Configuration:' for platform in platforms: # Checks - err_message = 'Invalid Configuration:' Log.info( "Checking [{0}] from platforms configuration...", platform) if as_conf.get_migrate_user_to(platform) == '': -- GitLab