Azure functions || python httptrigger || client before deployment || error posting file
ElanReep opened this issue · 1 comments
ElanReep commented
error
[12/09/2019 15:25:33] Error writing message type InvocationRequest to workerId: 44de9e70-9290-4fcb-a8e2-0a5d188e2f9a
[12/09/2019 15:25:33] System.Private.CoreLib: Error sending from server.
Post req from postman with File Key imgfile includeded in body - getting server error and the req never gets to the function
#####################
import logging
import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')
decodeType = req.form['decodeType']
imgfile = req.files['imgfile']
#####.......#######