mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
b099cab9b1
* Log error to DEBUG instead of panic. Fixes #6591 * Merge branch 'master' into fix-6591
13 lines
378 B
Python
13 lines
378 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["maxprocs.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/maxprocs",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@org_uber_go_automaxprocs//maxprocs:go_default_library",
|
|
],
|
|
)
|