You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When moving body and form params into the payload object, also consider adding query params
Related to #546 if the solution here is to expose form data in the handers/predictor
Notes
# multi-part form
curl -F 'image=@dog.jpg''http://a276ec846ff2211e9b92c0a56b992336-830038469.us-west-2.elb.amazonaws.com/iris/classifier?debug=true&test=2'# form
curl -F 'image=test''http://a276ec846ff2211e9b92c0a56b992336-830038469.us-west-2.elb.amazonaws.com/iris/classifier?debug=true&test=2'
logger.info(request.args) # query paramslogger.info(request.form) # formlogger.info(request.files) # multi-part form
E.g. multi-part image requests
When moving body and form params into the payload object, also consider adding query params
Related to #546 if the solution here is to expose form data in the handers/predictor
Notes
The text was updated successfully, but these errors were encountered: