mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 11:51:14 -05:00
Remove circuit breaker implementation
This commit is contained in:
@@ -18,7 +18,6 @@ import { EntityErrorBoundary } from "@/components/error/EntityErrorBoundary";
|
|||||||
import { breadcrumb } from "@/lib/errorBreadcrumbs";
|
import { breadcrumb } from "@/lib/errorBreadcrumbs";
|
||||||
import { handleError } from "@/lib/errorHandler";
|
import { handleError } from "@/lib/errorHandler";
|
||||||
import { RetryStatusIndicator } from "@/components/ui/retry-status-indicator";
|
import { RetryStatusIndicator } from "@/components/ui/retry-status-indicator";
|
||||||
import { NetworkStatusBanner } from "@/components/ui/network-status-banner";
|
|
||||||
|
|
||||||
// Core routes (eager-loaded for best UX)
|
// Core routes (eager-loaded for best UX)
|
||||||
import Index from "./pages/Index";
|
import Index from "./pages/Index";
|
||||||
@@ -135,7 +134,6 @@ function AppContent(): React.JSX.Element {
|
|||||||
<TooltipProvider>
|
<TooltipProvider>
|
||||||
<NavigationTracker />
|
<NavigationTracker />
|
||||||
<LocationAutoDetectProvider />
|
<LocationAutoDetectProvider />
|
||||||
<NetworkStatusBanner />
|
|
||||||
<RetryStatusIndicator />
|
<RetryStatusIndicator />
|
||||||
<Toaster />
|
<Toaster />
|
||||||
<Sonner />
|
<Sonner />
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
-- Remove circuit breaker settings from admin_settings
|
||||||
|
DELETE FROM admin_settings
|
||||||
|
WHERE setting_key IN (
|
||||||
|
'circuit_breaker.failure_threshold',
|
||||||
|
'circuit_breaker.reset_timeout',
|
||||||
|
'circuit_breaker.monitoring_window'
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user