Skip to content

Commit

Permalink
fix: RequestCertificate 大小写错误
Browse files Browse the repository at this point in the history
  • Loading branch information
SALTWOOD committed Aug 18, 2024
1 parent 9cd0deb commit 6b87ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CSharp-OpenBMCLAPI/Modules/Cluster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected async Task<int> AsyncRun()
await CheckFiles();
Logger.Instance.LogInfo();

await Requestcertificate();
await RequestCertificate();


if (!ClusterRequiredData.Config.NoEnable) await Enable();
Expand Down Expand Up @@ -750,7 +750,7 @@ internal async Task DownloadFile(string hash, string path, bool force = false)
/// 请求证书
/// </summary>
/// <returns></returns>
public async Task Requestcertificate()
public async Task RequestCertificate()
{
// File.Delete(Path.Combine(ClusterRequiredData.Config.clusterFileDirectory, $"certificates/cert.pem"));
// File.Delete(Path.Combine(ClusterRequiredData.Config.clusterFileDirectory, $"certificates/key.pem"));
Expand Down

0 comments on commit 6b87ce6

Please sign in to comment.