Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Jim DeFabiaJim DeFabiaReporter
Jacob Cobbett-SmithJacob Cobbett-SmithPriority
MinorCompatibility
PointFix versions
Pull Request URL
Roadmap
Not applicable
Details
Details
Components
Assignee
Jim DeFabia
Jim DeFabiaReporter
Jacob Cobbett-Smith
Jacob Cobbett-SmithPriority
Compatibility
Point
Fix versions
Pull Request URL
Roadmap
Not applicable
Created July 26, 2022 at 1:54 PM
Updated February 20, 2023 at 9:43 AM
Resolved February 20, 2023 at 9:43 AM
In baremetal, the usual despray use form is:
Despray(<logicalfile>, <dstip>, <dstpath>)
>Despray(varstring logicalName, varstring destinationIP='', varstring destinationPath, integer4 timeOut=-1, varstring espServerIpPort=GETENV('ws_fs_server'), integer4 maxConnections=-1, boolean allowOverwrite=FALSE, varstring destinationPlane='') :=
lib_fileservices.FileServices.Despray(logicalName, destinationIP, destinationPath, timeOut, espServerIpPort, maxConnections, allowOverwrite, destinationPlane);
However, in cloud, a destination plane must be provided
> Despray(<logicalfile>, <destplane>, <dstpath>)
will hit an error that the destination plane is missing.
> Despray(<logicalfile>, DestinationPlane := <destplane>, DestinationPath := <dstpath>)
would be the correct form.
NB: it is valid to provide dstIP too, since target planes can have >1 hosts, and this allows for the selection from that list.