-
Notifications
You must be signed in to change notification settings - Fork 5
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
Distinguish between regular and extended app describe #298
Conversation
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.
Yesterday I was chatting with @jayjayjpg about this one, and I was wondering if this information could be returned by the API directly, so we wouldn't need to fetch for each of the resources. Possibly having even two different endpoints such as:
GET /v1/applications/:uuid
(no--extended
)GET /v1/applications/:uuid?extended
(with--extended
).
What do you think?
P.S..: This question is not a blocker just an alternative implementation in case the list of connectors / functions / etc... ends up being too big.
the current implementation is quite slow. doing it all in the API would be faster and nicer. i could go either way, but at this point, i would favor making time for python work over another implementation of this; i'd be happy to open a follow up ticket to improve performance/efficiency around this. how does that sound? |
@janelletavares Yes, fully agree with you and that sounds good to me! |
opened this issue https://github.com/meroxa/turbine-project/issues/129 |
return output | ||
} | ||
|
||
func extendedResourcesTable(resources []*meroxa.Resource, connectors map[string]*meroxa.Connector) string { |
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'm still not sure why, but the typical library used for these tables was giving me lots of issues with nil pointers when trying to format these two subtables, so i just went with a less flexible option
@janelletavares makes sense to me |
Description of change
Fixes https://github.com/meroxa/turbine-project/issues/111
Type of change
How was this tested?
Demo
Additional references
Documentation updated