From 0105880a303ae8a48b6606d936bc0547d4b90527 Mon Sep 17 00:00:00 2001 From: Michelle Gower Date: Mon, 1 Apr 2024 11:19:53 -0500 Subject: [PATCH] Remove QuantumGraph metadata added by pipe_base. --- python/lsst/ctrl/mpexec/cmdLineFwk.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/lsst/ctrl/mpexec/cmdLineFwk.py b/python/lsst/ctrl/mpexec/cmdLineFwk.py index e58a52ea..4ccb1b23 100644 --- a/python/lsst/ctrl/mpexec/cmdLineFwk.py +++ b/python/lsst/ctrl/mpexec/cmdLineFwk.py @@ -35,8 +35,6 @@ import atexit import contextlib import copy -import datetime -import getpass import logging import shutil from collections.abc import Mapping, Sequence @@ -653,8 +651,6 @@ def makeGraph(self, pipeline: Pipeline, args: SimpleNamespace) -> QuantumGraph | "skip_existing_in": args.skip_existing_in, "skip_existing": args.skip_existing, "data_query": args.data_query, - "user": getpass.getuser(), - "time": f"{datetime.datetime.now()}", } assert run is not None, "Butler output run collection must be defined" qgraph = graph_builder.build(metadata, attach_datastore_records=args.qgraph_datastore_records)