From 84f8d9f4818ff036139f4b11570bb4ee2a21916a Mon Sep 17 00:00:00 2001
From: dave <dave@dtu.dk>
Date: Fri, 3 Jun 2016 13:12:09 +0200
Subject: [PATCH] prepost.dlctemplate: using all tags uses way too much disk
 space, only use those necessary to uniquely define each case

---
 wetb/prepost/dlctemplate.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/wetb/prepost/dlctemplate.py b/wetb/prepost/dlctemplate.py
index ed8f4047..95e0a5e9 100755
--- a/wetb/prepost/dlctemplate.py
+++ b/wetb/prepost/dlctemplate.py
@@ -363,7 +363,8 @@ def post_launch(sim_id, statistics=True, rem_failed=True, check_logs=True,
                           'hub3-blade3-node-%03i-momentvec-y' % nn_blr]]
         i0, i1 = 0, -1
 
-        tags = list(cc.cases[list(cc.cases.keys())[0]].keys())
+        # in addition, sim_id and case_id are always added by default
+        tags = ['[Case folder]']
         add = None
         # general statistics for all channels channel
         df_stats = cc.statistics(calc_mech_power=True, i0=i0, i1=i1,
-- 
GitLab