Kyunghwan Choi
08/07/2024, 1:01 PMelt
command, it gives this error: Error: Setting value set via multiple environment variables: ['TAP_HUBSPOT_AIRBYTE_CONFIG_CREDENTIALS_ACCESS_TOKEN', 'TAP_AIRBYTE_AIRBYTE_CONFIG_CREDENTIALS_ACCESS_TOKEN']
. Is there a way to bypass this error message or override the extractor to only use one env var?Edgar RamÃrez (Arch.dev)
08/07/2024, 1:22 PM.env
?Kyunghwan Choi
08/07/2024, 1:23 PMKyunghwan Choi
08/07/2024, 1:23 PMKyunghwan Choi
08/07/2024, 1:29 PM<https://hub.meltano.com/extractors/tap-hubspot--airbyte/>
extractor.Kyunghwan Choi
08/07/2024, 5:25 PM#if len(vals_with_metadata) > 1:
#if reduce(eq, (val for val, _ in vals_with_metadata)):
# raise MultipleEnvVarsSetException(
# [metadata["env_var"] for _, metadata in vals_with_metadata],
# )
#raise ConflictingSettingValueException(
# [metadata["env_var"] for _, metadata in vals_with_metadata],
#)
in file .local/share/pipx/venvs/meltano/lib/python3.9/site-packages/meltano/core/settings_store.py
and made el
command work, but definitely a hack for now.Kyunghwan Choi
08/07/2024, 5:26 PMEdgar RamÃrez (Arch.dev)
08/07/2024, 7:26 PMmeltano.yml
look like?Kyunghwan Choi
08/07/2024, 7:33 PMmeltano.yml
as it's one of those redacted field. So, only one of them in .env
. I've tried deleting it from .env
, then just setting one env var using export
, but the same error message.Kyunghwan Choi
08/07/2024, 7:33 PMKyunghwan Choi
08/07/2024, 7:34 PMrun
.Reuben (Matatika)
09/20/2024, 2:10 AM.env
and I get the same error. Seems to happen when the plugin name
and namespace
differ significantly, as in this case, and only when running el/elt
(not run
)...Kyunghwan Choi
09/20/2024, 2:44 AMReuben (Matatika)
09/20/2024, 11:41 AM