Skip to content
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

This pr is to add the translation of the Apache License notice #4078

Merged
merged 4 commits into from
Jul 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions cmd/thin/app/thin.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ func init() {
startCmd.Flags().IntVar(&controllerWorkqueueBurst, "workqueue-burst", 100, "burst limit value for controller's workqueue")
}

// handle initializes and starts the thinruntime controller.
//
// It sets up logging configurations, performance profiling, configures controller options,
// initializes the manager, sets up the runtime reconciler, and starts the manager with a
// SIGINT and SIGTERM signal handler for graceful shutdown.
//
// The function also includes error handling to log any issues that occur during setup
// or execution and exits the application if necessary.
func handle() {
fluid.LogVersion()

Expand Down
Loading