Skip to content

Commit 078f271

Browse files
feat: addition of cookies and basic auth - 13
1 parent 6ce4d3f commit 078f271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/processSnapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async function processSnapshot(snapshot: Snapshot, ctx: Context): Promise<Record
129129
timeout: REQUEST_TIMEOUT
130130
}
131131
if (requestUrl === snapshot.url && ctx.config.basicAuthorization ) {
132-
ctx.log.debug(`Adding basic authorization to the headers for root url`);
132+
ctx.log.debug(`Adding basic authorization to the headers for root url`);
133133
let token = Buffer.from(`${ctx.config.basicAuthorization.username}:${ctx.config.basicAuthorization.password}`).toString('base64');
134134
requestOptions.headers = {
135135
...request.headers(),

0 commit comments

Comments
 (0)