josh-fell commented on issue #19071:
URL: https://github.com/apache/airflow/issues/19071#issuecomment-955030428
@masayuki038 #19323 has been submitted to fix the issue. In the meantime,
can you try wrapping the `command` arg in `str()` and see if that is an
acceptable workaround for you?
```python
SSHOperator(task_id='run_my_command', command=str(command),
ssh_conn_id='default_conn', retries=0)
```
The `XComArg` class has a string representation that mimics the classic `"{{
task_instance.xcom_pull(...) }}"` which may help in this case.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]