-
Notifications
You must be signed in to change notification settings - Fork 378
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
feat: [draft] add TelemetryLoggerMiddleware to runtime #2423
Changes from 9 commits
366054b
142d1e4
45f429e
d14f3ba
bdd7545
449364f
88a1a79
80668d5
a5d88e3
232b143
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,11 +42,6 @@ public static IHostBuilder CreateHostBuilder(string[] args) => | |
builder.AddJsonFile("appsettings.deployment.json", optional: true, reloadOnChange: true); | ||
} | ||
|
||
if (!env.IsDevelopment()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why are you removing this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
currently we don't have an user secret inside the botruntime, app password and luis authoring key are stored in file(appsettings) |
||
{ | ||
builder.AddUserSecrets<Startup>(); | ||
} | ||
|
||
builder.AddEnvironmentVariables() | ||
.AddCommandLine(args); | ||
}) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this a 4.6.0 preview package? shouldn't it be 4.8.0?