We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a680e commit e738001Copy full SHA for e738001
airbyte_cdk/sources/declarative/interpolation/filters.py
@@ -95,15 +95,15 @@ def base64decode(value: str) -> str:
95
96
def base64binascii_decode(value: str) -> str:
97
"""
98
- Implementation of a custom Jinja2 base64decode filter
+ Implementation of a custom Jinja2 filter to decode base64 strings using ASCII encoding
99
100
For example:
101
102
OAuthAuthenticator:
103
$ref: "#/definitions/OAuthAuthenticator"
104
$parameters:
105
name: "client_id"
106
- value: "{{ config['client_id'] | base64decode }}"
+ value: "{{ config['client_id'] | base64binascii_decode }}"
107
108
:param value: value to be decoded from base64 using ascii
109
:return: base64 decoded string ascii
0 commit comments