-
Notifications
You must be signed in to change notification settings - Fork 160
Description
Following the tutorial here:
https://docs.microsoft.com/en-us/azure/event-grid/resize-images-on-storage-blob-upload-event?tabs=dotnet
Installation went well and when upload an image to the image container the Thumbnail function seems to run successfully.
However there are not images showing up in the thumbnail container.
Current Code:
local.settings.json
{ "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountName=egthumbnail;AccountKey=xxxxxxxxx;", "FUNCTIONS_WORKER_RUNTIME": "dotnet", "THUMBNAIL_CONTAINER_NAME": "thumbnails", "THUMBNAIL_WIDTH": "100", "datatype": "binary" } }
function.json
{ "generatedBy": "Microsoft.NET.Sdk.Functions-3.0.2", "configurationSource": "attributes", "bindings": [ { "type": "eventGridTrigger", "name": "eventGridEvent" } ], "disabled": false, "scriptFile": "../bin/ImageFunctions.dll", "entryPoint": "ImageFunctions.Thumbnail.Run" }