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
Thank you for filing this issue. We appreciate your feedback and will review the issue as soon as possible. Remember, however, that GitHub isn't a mechanism for receiving support under any agreement or SLA. If you require immediate assistance, contact Salesforce Customer Support.
We shipped a bug where the warning messages about new commands are showing up in stdout instead of stderr.
You'll probably notice this if you're relying on stdout to go to a file, like
sfdx force:data:soql:query -q "SELECT SOMETHING ..." --result-format csv > somefile.csv
and then there's unexpected warnings at the top of your csv file. 😠
workarounds
sfdx data query -q "SELECT SOMETHING ..." --result-format csv > somefile.csv
to prevent the warnings.The text was updated successfully, but these errors were encountered: