Skip to content

Commit 33636b0

Browse files
authored
Merge pull request #3022 from finos/fix-ui-large-bugs
Fix UI bugs from large dataset example
2 parents f1d3054 + d9d0fc9 commit 33636b0

File tree

41 files changed

+426
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+426
-155
lines changed

.cargo/config.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
bundle = "run -p perspective-bundle"
33

44
[build]
5+
# rustflags = ["--cfg=web_sys_unstable_apis", "--cfg=pyo3_disable_reference_pool"]
56
rustflags = ["--cfg=web_sys_unstable_apis"]
67
target-dir = "rust/target"
78

Cargo.lock

Lines changed: 72 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpp/protos/perspective.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ option optimize_for = LITE_RUNTIME;
2525
enum StatusCode {
2626
SERVER_ERROR = 0;
2727
VIEW_NOT_FOUND = 1;
28+
TRANSPORT_ERROR = 2;
2829
}
2930

3031
// Recoverable, user-readable error reporting from the engine.

examples/python-tornado/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def make_app(perspective_server):
4444
tornado.web.StaticFileHandler,
4545
{"path": "./", "default_filename": "index.html"},
4646
),
47-
]
47+
],
48+
websocket_max_message_size=100 * 1024 * 1024,
4849
)
4950

5051

0 commit comments

Comments
 (0)