mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-09 13:56:08 +00:00
Timeout and retry mechanism for Bitwarden CLI (#670)
This commit is contained in:
parent
7fd07ece2f
commit
e4fd825497
5 changed files with 119 additions and 8 deletions
|
@ -278,6 +278,11 @@ class BitwardenLogoutError(BitwardenBaseError):
|
|||
super().__init__(f"Error logging out of Bitwarden: {message}")
|
||||
|
||||
|
||||
class BitwardenSyncError(BitwardenBaseError):
|
||||
def __init__(self, message: str) -> None:
|
||||
super().__init__(f"Error syncing Bitwarden: {message}")
|
||||
|
||||
|
||||
class UnknownElementTreeFormat(SkyvernException):
|
||||
def __init__(self, fmt: str) -> None:
|
||||
super().__init__(f"Unknown element tree format {fmt}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue