If I attempt to preview a transform that has a REST API source I am getting the following error:
Traceback (most recent call last):
File "/scratch/asset-install/234567b5394a46f70fd9f8244ca07dbe/miniconda39/lib/python3.9/site-packages/foundry_pyls/preview/exe_preview.py", line 98, in main
inputs = _get_preview_inputs(
^^^^^^^^^^^^^^^^^^^^
File "/scratch/asset-install/234567b5394a46f70fd9f8244ca07dbe/miniconda39/lib/python3.9/site-packages/foundry_pyls/preview/exe_preview.py", line 336, in _get_preview_inputs
_setup_sources_and_credentials_v2(
File "/scratch/asset-install/234567b5394a46f70fd9f8244ca07dbe/miniconda39/lib/python3.9/site-packages/foundry_pyls/preview/exe_preview.py", line 538, in _setup_sources_and_credentials_v2
setup_source(resolved_source_parameter), on_prem_proxy_conf.get("uris", [])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: setup_source() missing 1 required positional argument: 'resolved_source_parameters'
1 Like
After merging all open PRs then upgrading the repo this went away. I am not a fan of breaking changes. I know I should keep my repos up to date, but breaking functionality is not cool. I really wish the team would find better ways to ensure backward compatibility as there is a massive cost associated with random breaking changes that just show up in platform. At my work we spent the last day trying to figure this out, and it affected multiple developers and repos. You should be able to progressively enhance the repository based on the dependency versions using a builder pattern or similar method without breaking existing repos.
1 Like
I am experiencing the same issue but no open PRs…
Any suggestion?
You need to click top right on the “upgrade repository” so that an upgrade PR will be opened.
You can then merge this upgrade PR.
Well noted for the frustration this may cause. Thanks for sharing.
I am experiencing the same error message when I set a breakpoint and preview & debug. I have no open PRs and all branches in the repo have been upgraded and are up to date.
Any thoughts?
Hello,
I’m thinking that this is affecting all repos using the external system decorator, I am experience the same as @chan_ells.
Hey @PaulBurnsAxisData, we have rolled out a fix on most Foundry instances with a couple still in the process of upgrading.
With that being said, if you are still encountering this issue, try the following steps:
- Restart your workspace a couple of times to ensure that any new changes are picked up.
- Upgrade the
transforms-external-systems
library in your transforms repository to a version >= 0.709.0
, which should resolve the issue.
Rebuilding the workspace worked, thanks!