Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SDK - Python components - Properly serializing outputs #2198

Commits on Sep 23, 2019

  1. Configuration menu
    Copy the full SHA
    de381ac View commit details
    Browse the repository at this point in the history
  2. SDK - Python components - Properly serializing outputs

    Background:
    Component arguments are already properly serialized when calling the component program and then deserialized before the execution of the component function.
    But the component outputs were only serialized using `str()` which is inadequate for data types like lists or dictionaries.
    
    This commit fixes the mismatch - theoutputs are now serialized the same ways as arguments and default values.
    Ark-kun committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    36e05eb View commit details
    Browse the repository at this point in the history