-
Notifications
You must be signed in to change notification settings - Fork 6
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
VM migration code changes #40
Conversation
naveena-maplelabs
commented
Jan 3, 2024
- While creating restore tasks, if the task with same name is completed or cancelled, new task with same name is created.
- Support to filter tasks based on start and end time is added.
- By default last one week tasks will be returned. Supported format is DD/MM/YYYY
1) While creating restore tasks, if the task with same name is completed or cancelled, new task with same name is created. 2) Support to filter tasks based on start and end time is added. 3) By default last one week tasks will be returned. Supported format is DD/MM/YYYY
@@ -25,7 +25,7 @@ | |||
import json | |||
import socket | |||
import traceback | |||
|
|||
from datetime import datetime, timedelta |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this in requirements this library ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I didnt see timedelta used anywhere ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
timedelta is used at line number 587. datetime is inbuilt package.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack, just make sure the package is autoinstalled on upgrade .
4593019
to
6a23415
Compare