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

chore(weave): feedback payload 1024 -> 1024*1024 #3023

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

gtarpenning
Copy link
Member

Description

Per @shawnlewis 's request, bump limit on payload to basically maxed.

@gtarpenning gtarpenning marked this pull request as ready for review November 19, 2024 21:01
@gtarpenning gtarpenning requested a review from a team as a code owner November 19, 2024 21:01
@circle-job-mirror
Copy link

circle-job-mirror bot commented Nov 19, 2024

Copy link
Collaborator

@jamie-rasmussen jamie-rasmussen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you take a look at #2926 and my comment on that - we should see what values this size do to the UI and we should update the docs.

@@ -228,7 +228,7 @@ def test_feedback_payload(client):
def test_feedback_create_too_large(client):
project_id = client._project_id()

value = "a" * 10000
value = "a" * 1024 * 1024
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am surprised this passes since the size check is for a value > than this (not >=) but InvalidRequest still gets raised?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thats a great point. 🤔 I will take a peek at why, as well as come up with some testing apparatus in a local trace server to iron out any slow points / loading states needed in the feedback grid

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants