ephraimbuddy commented on code in PR #37798:
URL: https://github.com/apache/airflow/pull/37798#discussion_r1507826906
##########
airflow/models/taskinstance.py:
##########
@@ -1253,7 +1253,7 @@ class TaskInstance(Base, LoggingMixin):
pid = Column(Integer)
executor_config = Column(ExecutorConfigType(pickler=dill))
updated_at = Column(UtcDateTime, default=timezone.utcnow,
onupdate=timezone.utcnow)
- rendered_map_index = Column(String(64))
+ rendered_map_index = Column(String(250))
Review Comment:
```suggestion
rendered_map_index = Column(StringID())
```
We have that special type that equals 250.
We should also make the changes in the migration file
--
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]