Skip to content

Commit

Permalink
SOFTWARE-5681: Update description of --start-time and --end-time para…
Browse files Browse the repository at this point in the history
…meters
  • Loading branch information
mwestphall authored Mar 14, 2024
1 parent b2e780f commit 8ef17da
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 8ef17da

Please sign in to comment.