Skip to content

Commit c0f13a5

Browse files
committed
fix: cscarf
1 parent 31e5005 commit c0f13a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/csharp/Configuration.mustache

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ public sealed class {{apiPackageName}}Config : AlgoliaConfig
4141
{
4242
DefaultHosts = GetDefaultHosts({{#hostWithAppID}}appId{{/hostWithAppID}});
4343
Compression = CompressionType.None;
44-
ReadTimeout = TimeSpan.fromSeconds({{x-timeouts.server.read}});
45-
WriteTimeout = TimeSpan.fromSeconds({{x-timeouts.server.write}});
46-
ConnectTimeout = TimeSpan.fromSeconds({{x-timeouts.server.connect}});
44+
ReadTimeout = TimeSpan.FromSeconds({{x-timeouts.server.read}});
45+
WriteTimeout = TimeSpan.FromSeconds({{x-timeouts.server.write}});
46+
ConnectTimeout = TimeSpan.FromSeconds({{x-timeouts.server.connect}});
4747
}
4848
{{/hasRegionalHost}}
4949
{{#hostWithAppID}}
@@ -139,4 +139,4 @@ private static List<StatefulHost> GetDefaultHosts()
139139
};
140140
}
141141
{{/hostsWithoutVariables.size}}
142-
}
142+
}

0 commit comments

Comments
 (0)