carloea2 opened a new issue, #8145:
URL: https://github.com/apache/texera/issues/8145

   ### What happened?
   
   Dashboard search accepts negative pagination values instead of rejecting 
invalid client input.
   
   Before: `start=-1` returns 500, and `count=-1` returns 200 with an 
inconsistent `more=true` response.
   After: negative `start` or `count` returns 400, while zero remains valid.
   
   ### How to reproduce?
   
   1. Start the local development backend from main.
   2. Request `GET /api/dashboard/publicSearch?resourceType=workflow&start=-1` 
and observe HTTP 500.
   3. Request the endpoint with `count=-1` and observe HTTP 200 with an empty 
result and `more=true`.
   4. Request the endpoint with `start=0&count=0` and observe HTTP 200.
   
   ### Version/Branch
   
   1.3.0-incubating-SNAPSHOT (main)
   
   ### Commit Hash (Optional)
   
   98588bf2ab49aac65ebf002496eb057670e6fc07
   
   ### What browsers are you seeing the problem on?
   
   Not browser-specific.
   
   ### Relevant log output
   
   Negative offset reaches the database query instead of being rejected at the 
API boundary.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to