Skip to content

Commit d263130

Browse files
author
ebembi-crdb
committed
Clean up retry testing artifacts for production merge
- Remove test-remote-failure.md with intentional failures - Update netlify.toml for production retry configuration - Rename build-test.sh to build.sh and remove test-specific code - Configure 3 retries with 30s base exponential backoff delay - Simplify logging for production use while keeping retry functionality
1 parent 6cf920f commit d263130

File tree

4 files changed

+147
-286
lines changed

4 files changed

+147
-286
lines changed

src/current/netlify.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
# TESTING CONFIGURATION - RETRY TESTING
2-
# This file contains retry testing configuration with intentional failures
3-
41
[build]
52
base = "src/current/"
63
publish = "_site/"
7-
command = "./netlify/build-test.sh"
4+
command = "./netlify/build.sh"
85
edge_functions = "./netlify/edge-functions"
96
[build.environment]
107
NODE_VERSION = "18.14.0"
118
RUBY_VERSION = "3.2.1"
12-
# Enable retry testing with failures
13-
NETLIFY_RETRY_TEST = "true"
149
JEKYLL_REMOTE_INCLUDE_CACHE = "true"
1510
JEKYLL_REMOTE_INCLUDE_CACHE_TTL = "3600"
11+
# Enable retry logic for production builds
12+
MAX_RETRIES = "3"
13+
BASE_RETRY_DELAY = "30"
1614
[build.processing.html]
1715
pretty_urls = true
1816

@@ -27,8 +25,7 @@
2725
"_data/cached"
2826
]
2927

30-
# Note: Retry functionality implemented in build script with intentional failures
31-
# Using build script retry logic to test failure scenarios
28+
# Retry functionality implemented in build script for robust production builds
3229

3330
[[edge_functions]]
3431
path = "/*"

src/current/netlify/build-test.sh

Lines changed: 0 additions & 215 deletions
This file was deleted.

0 commit comments

Comments
 (0)