-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[dg] Remove dg list component-type #29095
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
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
232a875
to
752f9c4
Compare
1127425
to
e49eb2a
Compare
e49eb2a
to
8ebaf80
Compare
752f9c4
to
081095c
Compare
8ebaf80
to
1ba6e67
Compare
081095c
to
7a42174
Compare
): | ||
output.append({"key": entry.key.to_typename(), "summary": entry.summary}) | ||
for entry in sorted(registry.get_objects(), key=lambda x: x.key.to_typename()): | ||
output.append( |
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.
totally fine for the purposes of this PR but my dream is for the "DagsterOuterTable / DagsterInnerTable" stuff to have functionality to auto-generate the json-ified output based on the table structure
e.g. right now this output is still kinda bad because it doesn't include the plugin name
this PR doesn't make it worse or anything, just logging for the future
7a42174
to
4be0e00
Compare
1ba6e67
to
0c0433f
Compare
0c0433f
to
77b0c62
Compare
77b0c62
to
ce35eda
Compare
## Summary & Motivation Remove `dg list component-type`. Convert `dg list component-type` tests to use `dg list plugins` instead. ## How I Tested These Changes Modified existing tests. ## Changelog The `dg list component-type` command has been removed. There is a new `dg list plugins` with output that is a superset of `dg list component-type`.
Summary & Motivation
Remove
dg list component-type
. Convertdg list component-type
tests to usedg list plugins
instead.How I Tested These Changes
Modified existing tests.
Changelog
The
dg list component-type
command has been removed. There is a newdg list plugins
with output that is a superset ofdg list component-type
.