当我按如下方式创建订阅时,TTL 默认为 10675199 天
var client = new ManagementClient(connStr);
if (!await client.SubscriptionExistsAsync(topicName, subscriptionName))
{
// TODO: this has an unlimited TTL, which needs to be reduced to 1 day.
client.CreateSubscriptionAsync(topicName, subscriptionName);
}
如何从代码中设置?