Revision ea14baf545785b691741a6d20f4868db80c92d77 authored by André Martins on 26 January 2019, 20:07:47 UTC, committed by Ian Vernon on 29 January 2019, 16:49:19 UTC
[ upstream commit bb099df4c32ae454ce1e70db1ab4d1f5b4930d04 ]

If cilium-agent got terminated while an endpoint was being created for
the first time, Cilium could not restore that endpoint from previous
life as the endpoint was never considered "alive" in the first place.

Signed-off-by: André Martins <andre@cilium.io>
Signed-off-by: Joe Stringer <joe@cilium.io>
1 parent 45e2227
Raw File
.travis.yml
language: go

dist: trusty
sudo: required

go:
 - 1.11.1

# This will travis to build on branch updates only for the master branch
branches:
  only:
  - master

addons:
  apt:
    packages:
      - kernel-package libc6-dev-i386

before_install: ./.travis/prepare.sh

before_script:
  - export PATH=/usr/local/clang/bin:$PATH
  - export GO=/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin/go

script: ./.travis/build.sh
back to top