Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
<value>Timeout</value>
</data>
<data name="OperationTimeoutDescription" xml:space="preserve">
<value>The amount of time to allow a Python script to run until it is terminated and an exception is thrown.</value>
<value>The amount of time in seconds to allow a Python script to run until it is terminated and an exception is thrown.</value>
</data>
<data name="LibraryPathDescription" xml:space="preserve">
<value>For Linux is the path to Python libpython*.so library including library name. For Windows (Version&gt;3.9) path to python**.dll including library name(usually is in Python Home path. For Windows (Version&lt;=3.9) leave empty.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Container activity that initializes and manages the Python runtime session for c
| Name | Display Name | Kind | Type | Required | Default | Placeholder | Description |
|------|-------------|------|------|----------|---------|-------------|-------------|
| `LibraryPath` | Library path (Linux or version>3.9) | InArgument | `string` | | null | | For Linux is the path to Python libpython*.so library including library name. For Windows (Version>3.9) path to python**.dll including library name(usually is in Python Home path. For Windows (Version<=3.9) leave empty. |
| `OperationTimeout` | Timeout | InArgument | `double` | | 3600 | | The amount of time to allow a Python script to run until it is terminated and an exception is thrown. |
| `OperationTimeout` | Timeout | InArgument | `double` | | 3600 | | The amount of time in seconds to allow a Python script to run until it is terminated and an exception is thrown. |
| `Path` | Path | InArgument | `string` | | null | | Python home path |
| `WorkingFolder` | WorkingFolder | InArgument | `string` | | null | | Used to specify the working folder of the scripts executing under the current scope |
| `ScriptDataSizeLimitMB` | Script Data Size Limit (MB) | InArgument | `int` | | null | | Maximum size in MB of the data passed to the Python script as method arguments. If the size of the arguments exceeds this limit, an error is raised. Minimum accepted value is 1 MB. Leave empty to use the runtime default (25 MB). |
Expand Down
Loading