Skip to content

Commit 9c29b82

Browse files
committed
w
1 parent cf80300 commit 9c29b82

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

scripts/content-modules/adjust-pages.pl

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ ()
118118
s|(docs/specs/otel/logs/api.md#emit-a)n-event|$1-logrecord|;
119119
s|\[semantic-convention-groups\]|[group-stability]|;
120120
s|\Q../../docs/|../|g; # https://github.com/open-telemetry/semantic-conventions/pull/1843
121+
s|\Qhttps://wikipedia.org/wiki/Where_(SQL)#IN|https://wikipedia.org/wiki/SQL_syntax#Operators|g;
121122
}
122123

123124
sub getVersFromSubmodule() {

scripts/double-check-refcache-400s.mjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function retry400sAndUpdateCache() {
3737
const parsedUrl = new URL(url);
3838
const { StatusCode, LastSeen } = details;
3939

40-
// if (isHttp2XX(StatusCode)) continue;
40+
if (isHttp2XX(StatusCode)) continue;
4141
if (isHttp2XX(StatusCode) && (!parsedUrl.hash || StatusCode >= 210))
4242
continue;
4343

@@ -46,7 +46,9 @@ async function retry400sAndUpdateCache() {
4646
StatusCode === 422
4747
) {
4848
const lastSeenDate = new Date(LastSeen).toLocaleString();
49-
// console.log(`Skipping ${StatusCode}: ${url} (last seen ${lastSeenDate}).`);
49+
console.log(
50+
`Skipping ${StatusCode}: ${url} (last seen ${lastSeenDate}).`,
51+
);
5052
continue;
5153
}
5254
if (url.startsWith(GOOGLE_DOCS_URL)) {

static/refcache.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
},
9494
"https://aws-otel.github.io/docs/components/confmap-providers#confmap-providers-supported-by-the-adot-collector": {
9595
"StatusCode": 206,
96-
"LastSeen": "2025-02-04T09:14:39.48319-05:00"
96+
"LastSeen": "2025-02-04T09:41:15.048512-05:00"
9797
},
9898
"https://aws-otel.github.io/docs/getting-started/collector": {
9999
"StatusCode": 206,
@@ -169,7 +169,7 @@
169169
},
170170
"https://betterstack.com/docs/logs/open-telemetry/#2-setup": {
171171
"StatusCode": 200,
172-
"LastSeen": "2025-02-04T09:14:41.159696-05:00"
172+
"LastSeen": "2025-02-04T09:41:18.944815-05:00"
173173
},
174174
"https://blog.logrocket.com/understanding-schema-stitching-graphql/": {
175175
"StatusCode": 200,
@@ -16516,8 +16516,8 @@
1651616516
"LastSeen": "2024-10-09T10:19:24.765198+02:00"
1651716517
},
1651816518
"https://wikipedia.org/wiki/SQL_syntax#Operators": {
16519-
"StatusCode": 204,
16520-
"LastSeen": "2025-01-28T16:18:59.006111-05:00"
16519+
"StatusCode": 200,
16520+
"LastSeen": "2025-02-04T09:41:37.480619-05:00"
1652116521
},
1652216522
"https://wikipedia.org/wiki/Software_testing": {
1652316523
"StatusCode": 200,
@@ -16547,10 +16547,6 @@
1654716547
"StatusCode": 200,
1654816548
"LastSeen": "2024-12-04T08:47:08.361851296Z"
1654916549
},
16550-
"https://wikipedia.org/wiki/Where_%28SQL%29#IN": {
16551-
"StatusCode": 404,
16552-
"LastSeen": "2025-02-04T09:15:01.676341-05:00"
16553-
},
1655416550
"https://wikipedia.org/wiki/World_Geodetic_System#WGS84": {
1655516551
"StatusCode": 200,
1655616552
"LastSeen": "2025-02-04T09:15:11.552948-05:00"

0 commit comments

Comments
 (0)