(clientId string)
| 24 | ) |
| 25 | |
| 26 | func SetClientId(clientId string) { |
| 27 | clientIdLock.Lock() |
| 28 | defer clientIdLock.Unlock() |
| 29 | cachedClientId = clientId |
| 30 | } |
| 31 | |
| 32 | // in the main server, this will not return empty string |
| 33 | // it does return empty in wsh, but all wstore methods are invalid in wsh mode, so that shouldn't be an issue |
no outgoing calls
no test coverage detected