-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat(ingest): remove need for sink block in UI based ingestion #5208
feat(ingest): remove need for sink block in UI based ingestion #5208
Conversation
@@ -170,6 +172,14 @@ def guess_entity_type(urn: str) -> str: | |||
return urn.split(":")[2] | |||
|
|||
|
|||
def get_system_auth() -> Optional[str]: |
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.
Nice!
@@ -91,6 +74,10 @@ def __init__( | |||
) | |||
if token: | |||
self._session.headers.update({"Authorization": f"Bearer {token}"}) | |||
else: |
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.
Awesome solve! Thanks aseem.
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.
lgtm
Checklist