mirror of
https://github.com/datahub-project/datahub.git
synced 2026-01-05 22:34:13 +00:00
fix(ingest): clarify tableau auth error messages (#6600)
This commit is contained in:
parent
df96e89557
commit
308b4eae87
@ -186,10 +186,12 @@ class TableauConnectionConfig(ConfigModel):
|
||||
return server
|
||||
except ServerResponseError as e:
|
||||
raise ValueError(
|
||||
f"Unable to login with credentials provided: {str(e)}"
|
||||
f"Unable to login (invalid credentials or missing permissions): {str(e)}"
|
||||
) from e
|
||||
except Exception as e:
|
||||
raise ValueError(f"Unable to login: {str(e)}") from e
|
||||
raise ValueError(
|
||||
f"Unable to login (check your Tableau connection and credentials): {str(e)}"
|
||||
) from e
|
||||
|
||||
|
||||
class TableauConfig(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user