(s string)
| 78 | } |
| 79 | |
| 80 | func CheckTenantIDLength(s string) error { |
| 81 | if len(s) > 150 { |
| 82 | return errTenantIDTooLong |
| 83 | } |
| 84 | |
| 85 | return nil |
| 86 | } |
| 87 | |
| 88 | func CheckTenantIDIsSupported(s string) error { |
| 89 | // check tenantID is "__markers__" |
no outgoing calls
no test coverage detected