-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(check-devices): Update --timeout management + add logging managem…
…ent (#117) * fix(check-devices): Update --timeout management + add logging management * fix(check-devices): Remove constraint on logging * fix(check-devices): Update logging management * fix(anta.inventory): Move from multiprocessing to multithreading * make: Add vscode debugger for check-devices * fix(anta.inventory): Rollback logging for create_device_session * fix: update from review * Update code as per gmuloc review
- Loading branch information
Showing
4 changed files
with
109 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "check-devices debug", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/scripts/check-devices.py", | ||
"args": [ | ||
"-u", | ||
"admin", | ||
"-p", | ||
"admin123", | ||
"-log", | ||
"INFO", | ||
"-i", | ||
"${workspaceFolder}/.personal/avd-lab.yml", | ||
"-c", | ||
"${workspaceFolder}/.personal/ceos-catalog.yml", | ||
"--table", | ||
"--timeout", | ||
"1" | ||
], | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters