-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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(openapi): Adding subtype for openapi source #12873
base: master
Are you sure you want to change the base?
feat(openapi): Adding subtype for openapi source #12873
Conversation
@@ -8,9 +8,6 @@ | |||
from typing import Dict, Iterable, List, Optional, Set, Union | |||
|
|||
import nest_asyncio | |||
from okta.client import Client as OktaClient |
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.
pylint insisted upon this in order to let me commit
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.
good with me, as long as ruff
is happy with it
|
||
from datahub.ingestion.run.pipeline import Pipeline | ||
from datahub.ingestion.source.identity.okta import OktaConfig | ||
from okta.models import Group, User |
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.
pylint insisted upon this in order to let me commit
] | ||
} | ||
}, | ||
"entityType": "dataset", |
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.
I did visual validation that the metadata here is unchanged (save subtypes) and just re-organized.
lint issues are unrelated. |
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.
Stamping, but I didn't review in depth
@@ -8,9 +8,6 @@ | |||
from typing import Dict, Iterable, List, Optional, Set, Union | |||
|
|||
import nest_asyncio | |||
from okta.client import Client as OktaClient |
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.
good with me, as long as ruff
is happy with it
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! 🚀 New features to boost your workflow:
|
This diff is so large because I had to refactor the openapi source to use MCP instead of MCE. The actual change is very minimal: just adding subtype.
Checklist