章丙辰

Results 2 issues of 章丙辰

According to [SQLAlchemy's Generic Type Document](https://docs.sqlalchemy.org/en/14/core/type_basics.html#sqlalchemy.types.Enum) Python's class inherit from **enum.Enum** should be wrapped with **sqlalchemy.sql.Enum(sqlalchemy.sql.sqltypes.Enum)** when it is set to sqlalchemy.Column()'s type_ field.

本次提交的PR主要是为了解决一个关于Pod管理的问题。在当前的IsCompletePod函数中,存在对DeletionTimestamp的判断,但这种判断方式可能引发一些问题。DeletionTimestamp被更新仅表示当前Pod开始执行退出动作,但并不意味着该Pod中的服务已经释放了显存。如果Pod的退出动作执行时间较长,可能会导致服务出现显存OOM的情况。这个问题在单机多卡的场景下有一定的出现概率,因此需要移除原有的判断方式,以避免潜在的风险。 PR submission: Remove the judgment of DeletionTimestamp in the IsCompletePod function, because the update of DeletionTimestamp only indicates that the current Pod has started the exit action, but does...