From 1f1be91997d81269e029daeb8feeadf319c6eecc Mon Sep 17 00:00:00 2001 From: devbot Date: Thu, 18 Apr 2024 12:10:57 -0700 Subject: [PATCH] [neon-cluster-operator]: restored Minio controller --- .../Controllers/Minio/MinioBucketController.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Services/neon-cluster-operator/Controllers/Minio/MinioBucketController.cs b/Services/neon-cluster-operator/Controllers/Minio/MinioBucketController.cs index 1cc195de7..4cad0077e 100644 --- a/Services/neon-cluster-operator/Controllers/Minio/MinioBucketController.cs +++ b/Services/neon-cluster-operator/Controllers/Minio/MinioBucketController.cs @@ -102,10 +102,6 @@ public override async Task ReconcileAsync(V1MinioBucke using (var activity = TelemetryHub.ActivitySource?.StartActivity()) { - //################################ - // $debug(jefflill): RESTORE THIS! - //################################ -#if TODO Tracer.CurrentSpan?.AddEvent("reconcile", attributes => attributes.Add("resource", nameof(V1MinioBucket))); logger?.LogInformationEx(() => $"Reconciling {resource.GetType().FullName} [{resource.Namespace()}/{resource.Name()}]."); @@ -176,7 +172,6 @@ await k8s.CustomObjects.PatchNamespacedCustomObjectStatusAsync( logger?.LogInformationEx(() => $"RECONCILED: {resource.Name()}"); -#endif return null; } }