Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SOFTWARE-5681: Update description of --start-time and --end-time parameters #180

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading