You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting this issue. The direct download option has been removed from the SDK in a newer release because it's the only API that switches the response content type depending on the request payload. To make it easier to use I added a change that automatically decodes the base64 payload and prints it to stdout, so you don't need to use the workaround.
## Changes
Also see #525.
The direct download flag has been removed in newer versions because of
the content type issue.
Instead, we can make the command decode the base64 output when the
output mode is text.
```
$ databricks workspace export /some/path/script.sh
#!/bin/bash
echo "this is a script"
```
## Tests
New integration test.
Export a file with
#
such as an init script in bashworkaround:
The text was updated successfully, but these errors were encountered: