ginのcontextをgoroutineに渡す際はコピーしなければならない gin/context.goには下記のようなことが書いてあります(zennで見やすいように勝手に改行しました)。 // Copy returns a copy of the current context // that can be safely used outside the request's scope. // (訳: Copyはリクエストスコープの外でも安全に使えるcontextのコピーを作ります) // This has to be used // when the context has to be passed to a goroutine. // (訳: contextをgoroutineに渡す際にはこのメソッドを使う必要があります) 気になるのは、goroutineにcontextを渡す際に