diff --git a/enos/modules/build_boundary_docker_local/build.sh b/enos/modules/build_boundary_docker_local/build.sh index 77e54c5cfd..f996397951 100644 --- a/enos/modules/build_boundary_docker_local/build.sh +++ b/enos/modules/build_boundary_docker_local/build.sh @@ -9,6 +9,6 @@ root_dir="$(git rev-parse --show-toplevel)" pushd "${root_dir}" > /dev/null export IMAGE_TAG_DEV="${IMAGE_NAME}" -make docker-build-dev +make build-ui docker-build-dev popd > /dev/null diff --git a/testing/internal/e2e/boundary/session.go b/testing/internal/e2e/boundary/session.go index 4a0832c9e8..c0a395950b 100644 --- a/testing/internal/e2e/boundary/session.go +++ b/testing/internal/e2e/boundary/session.go @@ -49,6 +49,7 @@ func WaitForSessionCli(t testing.TB, ctx context.Context, projectId string) *ses } session = sessionListResult.Items[0] + t.Logf("Created Session: %s", session.Id) return nil }, backoff.WithMaxRetries(backoff.NewConstantBackOff(3*time.Second), 5),