Skip to content

Commit e738001

Browse files
committed
feat: fix
Signed-off-by: Artem Inzhyyants <[email protected]>
1 parent d2a680e commit e738001

File tree

1 file changed

+2
-2
lines changed
  • airbyte_cdk/sources/declarative/interpolation

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/interpolation/filters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ def base64decode(value: str) -> str:
9595

9696
def base64binascii_decode(value: str) -> str:
9797
"""
98-
Implementation of a custom Jinja2 base64decode filter
98+
Implementation of a custom Jinja2 filter to decode base64 strings using ASCII encoding
9999
100100
For example:
101101
102102
OAuthAuthenticator:
103103
$ref: "#/definitions/OAuthAuthenticator"
104104
$parameters:
105105
name: "client_id"
106-
value: "{{ config['client_id'] | base64decode }}"
106+
value: "{{ config['client_id'] | base64binascii_decode }}"
107107
108108
:param value: value to be decoded from base64 using ascii
109109
:return: base64 decoded string ascii

0 commit comments

Comments
 (0)