Skip to content

Commit

Permalink
Added NeonService.Started() and updated the service Startup classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jefflill committed Apr 23, 2024
1 parent c384ce2 commit c56d604
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Services/neon-acme/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)

// Indicate that the service is ready for business.

NeonAcmeService.StartedAsync().GetAwaiter().GetResult();
NeonAcmeService.Started();
}
}
}
2 changes: 1 addition & 1 deletion Services/neon-cluster-operator/OperatorStartup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void Configure(IApplicationBuilder app)

// Indicate that the service is ready for business.

Service.StartedAsync().GetAwaiter().GetResult();
Service.Started();
}
}
}
2 changes: 1 addition & 1 deletion Services/neon-node-agent/OperatorStartup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void Configure(IApplicationBuilder app)

// Indicate that the service is ready for business.

Service.StartedAsync().GetAwaiter().GetResult();
Service.Started();
}
}
}
3 changes: 1 addition & 2 deletions Services/neon-sso-session-proxy/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)

// Indicate that the service is ready for business.

Service.StartedAsync().GetAwaiter().GetResult();
Service.Started();
}
}
}

0 comments on commit c56d604

Please sign in to comment.