Skip to content
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

Refactor response classes #2113

Merged
merged 36 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8830cab
sync remote
ravi-kumar-pilla Jul 28, 2024
0a5d1ae
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Jul 30, 2024
bf47b47
merge main
ravi-kumar-pilla Aug 8, 2024
13e905b
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Aug 13, 2024
3d6326c
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Aug 21, 2024
3d3bdda
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Aug 22, 2024
1abfc43
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 4, 2024
1461a3c
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 5, 2024
c3f7cc6
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 9, 2024
1831a39
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 12, 2024
db14971
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 17, 2024
93a7e28
merge main
ravi-kumar-pilla Sep 19, 2024
a7592a2
Merge branch 'main' of https://github.com/kedro-org/kedro-viz
ravi-kumar-pilla Sep 23, 2024
edc1de4
refactor response classes
ravi-kumar-pilla Sep 25, 2024
0a1ecf1
adjust permissions
ravi-kumar-pilla Sep 25, 2024
301b24a
adjuste permissions
ravi-kumar-pilla Sep 25, 2024
883c532
move from multiprocessing to threading
ravi-kumar-pilla Sep 27, 2024
7682b0d
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Oct 2, 2024
b96dba2
fix file perm
ravi-kumar-pilla Oct 2, 2024
3d53962
revert threading
ravi-kumar-pilla Oct 15, 2024
95462e7
revert except block
ravi-kumar-pilla Oct 15, 2024
6284854
adjust lint and tests
ravi-kumar-pilla Oct 16, 2024
2b02f2d
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Oct 16, 2024
775b501
fix lint
ravi-kumar-pilla Oct 17, 2024
33cf697
fix perm
ravi-kumar-pilla Oct 17, 2024
563241f
update comments
ravi-kumar-pilla Oct 21, 2024
aa3fb17
changes based on PR comments
ravi-kumar-pilla Oct 25, 2024
79260ea
changes based on PR comments
ravi-kumar-pilla Oct 25, 2024
45cbd86
update file comments
ravi-kumar-pilla Oct 25, 2024
f75059c
merge main
ravi-kumar-pilla Oct 30, 2024
4847622
remove pylint
ravi-kumar-pilla Oct 30, 2024
dfbb6e5
adjust attributes
ravi-kumar-pilla Oct 30, 2024
248961d
test assert helper
ravi-kumar-pilla Oct 30, 2024
9288f94
test assert helper
ravi-kumar-pilla Oct 30, 2024
5f32caa
test assert helper
ravi-kumar-pilla Oct 30, 2024
015e17f
test assert helper
ravi-kumar-pilla Oct 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/kedro_viz/api/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from jinja2 import Environment, FileSystemLoader

from kedro_viz import __version__
from kedro_viz.api.rest.responses import EnhancedORJSONResponse
from kedro_viz.api.rest.responses.utils import EnhancedORJSONResponse
from kedro_viz.integrations.kedro import telemetry as kedro_telemetry

from .graphql.router import router as graphql_router
Expand Down
Loading
Loading