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

Update Readme.md #76

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions HandsOnLab/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Net.Http;
using System.Threading.Tasks;

namespace My.Function
{
Expand All @@ -325,7 +326,7 @@ namespace My.Function
private static readonly HttpClient httpClient = new HttpClient();

[FunctionName("TwinsFunction")]
public async void Run([EventGridTrigger] EventGridEvent eventGridEvent, ILogger log)
public async Task Run([EventGridTrigger] EventGridEvent eventGridEvent, ILogger log)
{
log.LogInformation(eventGridEvent.Data.ToString());
if (adtInstanceUrl == null) log.LogError("Application setting \"ADT_SERVICE_URL\" not set");
Expand Down Expand Up @@ -851,4 +852,4 @@ Now to create a fourth tile, the `Anomalies Over the Hour` line chart. This one

1. To display the Tile details pane, click **Next**

This is the end of the Hands On Lab!
This is the end of the Hands On Lab!