Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 8323818

Browse files
removed ftl exception on startup that did nothing
1 parent 9b679e5 commit 8323818

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/SqlStreamStore.HAL.DevServer/WebHostBuilderExtensions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ internal static class WebHostBuilderExtensions
77
{
88
public static IWebHostBuilder UseStartup(this IWebHostBuilder builder, IStartup startup)
99
=> builder
10-
.ConfigureServices(services => services.AddSingleton(startup))
11-
.UseSetting(WebHostDefaults.ApplicationKey, startup.GetType().AssemblyQualifiedName);
10+
.ConfigureServices(services => services.AddSingleton(startup));
1211
}
1312
}

0 commit comments

Comments
 (0)