(conn *websocket.Conn)
| 38 | } |
| 39 | |
| 40 | func removeWSConnection(conn *websocket.Conn) { |
| 41 | wsMutex.Lock() |
| 42 | delete(wsConnections, conn) |
| 43 | delete(connWriteMutexes, conn) |
| 44 | wsMutex.Unlock() |
| 45 | } |
| 46 | |
| 47 | func processStartupWorkflow(operationType string, fileType string) error { |
| 48 | if startupWorkflowInProgress { |
no outgoing calls
no test coverage detected