Skip to content

Commit

Permalink
Merge pull request #180 from opensciencegrid/mwestphall-patch-1
Browse files Browse the repository at this point in the history
SOFTWARE-5681: Update description of --start-time and --end-time parameters
  • Loading branch information
matyasselmeci authored Mar 14, 2024
2 parents b2e780f + 8ef17da commit 01a3a58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common/gratia/common/condor.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,16 @@ def parse_opts(probe_name):
parser.add_option("--start-time",
help="""First time to include when processing records using --history
option. Time should be formated as YYYY-MM-DD HH:MM:SS where HH:MM:SS
is assumed to be 00:00:00 if omitted.""",
is assumed to be 00:00:00 if omitted. Records with a JobCurrentStartDate on
or after the given time in your local time zone will be included.""",
dest="history_start_time",
default=None)

parser.add_option("--end-time",
help="""Last time to include when processing records using --history
option. Time should be formated as YYYY-MM-DD HH:MM:SS where HH:MM:SS
is assumed to be 00:00:00 if omitted""",
is assumed to be 00:00:00 if omitted. Records with a JobCurrentStartDate on
or before the given time in your local time zone will be included.""",
dest="history_end_time",
default=None)

Expand Down

0 comments on commit 01a3a58

Please sign in to comment.