Skip to content

Commit

Permalink
Fix issue with seeing the hello world message
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Julian <[email protected]>
  • Loading branch information
kylejuliandev committed Jan 10, 2025
1 parent e06cccc commit 5a279e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/getting-started/dotnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ dotnet build
dotnet run
```

In the logs you should see a line with the following `Now listening on: http://localhost:5251`, although the port number may differ. You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should the message "Hello!".
In the logs you should see a line with the following `Now listening on: http://localhost:5251`, although the port number may differ. You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should see the message "Hello!".

"Why I'm I seeing that value?", you may ask. Well, it's because a provider hasn't been configured yet. Without a provider to actually evaluate flags, OpenFeature will return the default value. In the next step, you'll learn how to add a provider.

Expand Down Expand Up @@ -207,7 +207,7 @@ dotnet build
dotnet run
```

You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should the message "Hello!".
You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should see the message "Hello!".

<FlagdChangeContent/>

Expand Down

0 comments on commit 5a279e1

Please sign in to comment.