diff --git a/example.orchestration.yaml b/example.orchestration.yaml index f1d40ec..7e9a52a 100644 --- a/example.orchestration.yaml +++ b/example.orchestration.yaml @@ -49,7 +49,6 @@ configurations: timestamp: upload timestamp title: upload title text: textual content - duration: duration screenshot: screenshot hash: hash wacz: wacz diff --git a/src/auto_archiver/core/context.py b/src/auto_archiver/core/context.py index 2e03eee..f836c67 100644 --- a/src/auto_archiver/core/context.py +++ b/src/auto_archiver/core/context.py @@ -27,7 +27,6 @@ class ArchivingContext: @staticmethod def set(key, value, keep_on_reset: bool = False): - logger.debug(f"SET [{key}]={value}") ac = ArchivingContext.get_instance() ac.configs[key] = value if keep_on_reset: ac.keep_on_reset.add(key) diff --git a/src/auto_archiver/utils/gsheet.py b/src/auto_archiver/utils/gsheet.py index 0fec7f9..336f5c1 100644 --- a/src/auto_archiver/utils/gsheet.py +++ b/src/auto_archiver/utils/gsheet.py @@ -34,7 +34,6 @@ class Gsheets(Step): 'timestamp': 'upload timestamp', 'title': 'upload title', 'text': 'text content', - 'duration': 'duration', 'screenshot': 'screenshot', 'hash': 'hash', 'wacz': 'wacz', diff --git a/src/auto_archiver/utils/gworksheet.py b/src/auto_archiver/utils/gworksheet.py index 49c195f..7dbc774 100644 --- a/src/auto_archiver/utils/gworksheet.py +++ b/src/auto_archiver/utils/gworksheet.py @@ -18,7 +18,6 @@ class GWorksheet: 'thumbnail_index': 'thumbnail index', 'timestamp': 'upload timestamp', 'title': 'upload title', - 'duration': 'duration', 'screenshot': 'screenshot', 'hash': 'hash', 'wacz': 'wacz',