mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c3c4825f80
A local endpoint is known to the watch database only during Join. But the same endpoint can be known to the watch database as remote endpoint well before the Join because a CreateEndpoint updates the endpoint to the store. So on Join when you come to know that this is indeed a local endpoint remove it from remote endpoint list and add it to local endpoint list. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
14 lines
259 B
Bash
14 lines
259 B
Bash
# -*- mode: sh -*-
|
|
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "Test overlay network with consul" {
|
|
skip_for_circleci
|
|
test_overlay consul
|
|
}
|
|
|
|
@test "Test overlay network singlehost with consul" {
|
|
skip_for_circleci
|
|
test_overlay_singlehost consul
|
|
}
|