Skip to content

Commit c67b84d

Browse files
Fix interpolation.
1 parent a510a5c commit c67b84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export class KubeConfig {
191191
// Copy headers from httpsOptions to RequestContext
192192
const headers = httpsOptions.headers || {};
193193
Object.entries(headers).forEach(([key, value]) => {
194-
context.setHeaderParam(key, '${value}');
194+
context.setHeaderParam(key, `${value}`);
195195
})
196196

197197
// Copy AgentOptions from RequestOptions

0 commit comments

Comments
 (0)