Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: Remove unnecessary ValueError (#82)
An extraneous ValueError was in build_runtime_datasources and caused incorrect operator failure when a runtime datasource is built but a connection or dataframe is not passed in. The if/elif/else block would hit the else, which was a ValueError, and it made the below if statement on checkpoint_kwargs unreachable. It has been removed as the ValueError in the first if block is sufficient to halt operator execution in the case of incorrect usage.
- Loading branch information