(topic utils.TopicName)
| 2175 | } |
| 2176 | |
| 2177 | func (t *topics) GetMaxSubscriptionsPerTopic(topic utils.TopicName) (int, error) { |
| 2178 | return t.GetMaxSubscriptionsPerTopicWithContext(context.Background(), topic) |
| 2179 | } |
| 2180 | |
| 2181 | func (t *topics) GetMaxSubscriptionsPerTopicWithContext(ctx context.Context, topic utils.TopicName) (int, error) { |
| 2182 | maxSubscriptions, err := t.localTopicPolicies().GetMaxSubscriptionsPerTopic(ctx, topic, false) |
nothing calls this directly
no test coverage detected