:wave: I have a class UDF that depends on an envir...
# general
g
👋 I have a class UDF that depends on an environment variable being available. I know that the environment variable is set, but it is complaining that it doesn't exist. context running native executor in Argo workflows step.
Copy code
- name: S3_ENDPOINT
      value: <my S3 endpoint
Copy code
"endpoint_url": os.environ["S3_ENDPOINT"],
                    ~~~~~~~~~~^^^^^^^^^^^^^^^

  File "<frozen os>", line 714, in __getitem__

KeyError: 'S3_ENDPOINT'
j
I think the fix was just merged: https://github.com/Eventual-Inc/Daft/pull/5047
🙌 1