Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fantapsody committed Apr 22, 2021
1 parent dba6acf commit e5cbf99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func main() {

// allow function mesh to be disabled and enable it by default
// required because of https://github.com/operator-framework/operator-lifecycle-manager/issues/1523
if os.Getenv("ENABLE_FUNCTION_MESH_CONTROLLER") == "false" {
if os.Getenv("ENABLE_FUNCTION_MESH_CONTROLLER") != "false" {
if err = (&controllers.FunctionMeshReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("FunctionMesh"),
Expand Down

0 comments on commit e5cbf99

Please sign in to comment.