@@ -16,7 +16,7 @@ let latestEndOfLifeServerVersion: Promise<string> | null = null;
1616export async function getLatestEndOfLifeServerVersion ( ) : Promise < string > {
1717 if ( ! HADRON_AUTO_UPDATE_ENDPOINT ) {
1818 log . debug (
19- mongoLogId ( 1_001_000_350 ) ,
19+ mongoLogId ( 1_001_000_352 ) ,
2020 'getLatestEndOfLifeServerVersion' ,
2121 'HADRON_AUTO_UPDATE_ENDPOINT is not set'
2222 ) ;
@@ -26,7 +26,7 @@ export async function getLatestEndOfLifeServerVersion(): Promise<string> {
2626 if ( ! latestEndOfLifeServerVersion ) {
2727 // Setting module scoped variable to avoid repeated fetches.
2828 log . debug (
29- mongoLogId ( 1_001_000_348 ) ,
29+ mongoLogId ( 1_001_000_353 ) ,
3030 'getLatestEndOfLifeServerVersion' ,
3131 'Fetching EOL server version'
3232 ) ;
@@ -37,7 +37,7 @@ export async function getLatestEndOfLifeServerVersion(): Promise<string> {
3737 if ( response . ok ) {
3838 const result = await response . text ( ) ;
3939 log . debug (
40- mongoLogId ( 1_001_000_349 ) ,
40+ mongoLogId ( 1_001_000_354 ) ,
4141 'getLatestEndOfLifeServerVersion' ,
4242 'Got EOL server version response' ,
4343 { result }
@@ -53,7 +53,7 @@ export async function getLatestEndOfLifeServerVersion(): Promise<string> {
5353 } )
5454 . catch ( ( error ) => {
5555 log . error (
56- mongoLogId ( 1_001_000_351 ) ,
56+ mongoLogId ( 1_001_000_355 ) ,
5757 'getLatestEndOfLifeServerVersion' ,
5858 'Failed to fetch EOL server version' ,
5959 { error }
0 commit comments