Revision 2c1ce283c8e51e1d1b853770d0ed8eea620cbdfb authored by Romain Lenglet on 09 May 2018, 08:02:30 UTC, committed by Romain Lenglet on 19 May 2018, 18:20:03 UTC
Allocate ID 4 to "health" entities (health daemon endpoints).
Allocate ID 5 to "init" entities (initializing endpoints).

Allocate such entity IDs synchronously, since that doesn't require
any kvstore interactions.

Fixes: https://github.com/cilium/cilium/issues/3895
Signed-off-by: Romain Lenglet <romain@covalent.io>
1 parent c2bb1ec
Raw File
build.sh
#!/bin/bash

set -e

pushd `dirname $0` > /dev/null
P="`pwd`/.."
popd > /dev/null

cd "$P"
go install ./... 2> /dev/null || true
make clean

# Compile with deadlock detection during runtime tests. See GH-1654.
LOCKDEBUG=1 make
back to top