Skip to content

Commit 053feda

Browse files
gabo1208embano1
andauthored
fix: source is valid and fully-qualified url (#524) (#525)
The source property of the adapter was set using the URL host field which is incomplete and confusing for users migrating from the VEBA project to Sources. This fix changes the source semantic to be a valid and fully-qualifed URL of the configured vCenter event source. Closes: #523 Signed-off-by: Michael Gasch <[email protected]> Co-authored-by: Michael Gasch <[email protected]>
1 parent 8fda92a commit 053feda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/vsphere/adapter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func NewAdapter(ctx context.Context, processed adapter.EnvConfigAccessor, ceClie
7373
logger.Fatalf("unable to create vSphere client: %v", err)
7474
}
7575

76-
source := vClient.URL().Host
76+
source := vClient.URL().String()
7777
if source == "" {
7878
logger.Fatal("unable to determine vSphere client source: empty host")
7979
}

0 commit comments

Comments
 (0)