Skip to content

Commit

Permalink
fix: Add unix:// to connection string for plugins from CloudQuery H…
Browse files Browse the repository at this point in the history
  • Loading branch information
candiduslynx authored Nov 1, 2023
1 parent 22ade0f commit ece4dd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions managedplugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ func (c *Client) ConnectionString() string {
switch c.registry {
case RegistryGrpc:
return tgt
case RegistryLocal:
return "unix://" + tgt
case RegistryGithub:
case RegistryLocal,
RegistryGithub,
RegistryCloudQuery:
return "unix://" + tgt
case RegistryDocker:
return tgt
Expand Down

0 comments on commit ece4dd2

Please sign in to comment.