mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 12:37:49 +00:00
More tuning and working on vacuum support
noticed a couple of stange things with vacuum Signed-off-by: quobix <dave@quobix.com>
This commit is contained in:
@@ -481,7 +481,7 @@ func TestDigitalOceanAsDocFromSHA(t *testing.T) {
|
||||
}
|
||||
config.RemoteURLHandler = func(url string) (*http.Response, error) {
|
||||
request, _ := http.NewRequest(http.MethodGet, url, nil)
|
||||
request.Header.Set("Authorization", fmt.Sprintf("Bearer %s", os.Getenv("GITHUB_TOKEN")))
|
||||
request.Header.Set("Authorization", fmt.Sprintf("Bearer %s", os.Getenv("GH_PAT")))
|
||||
return client.Do(request)
|
||||
}
|
||||
}
|
||||
@@ -506,7 +506,7 @@ func TestDigitalOceanAsDocFromMain(t *testing.T) {
|
||||
}
|
||||
|
||||
config.Logger = slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
|
||||
Level: slog.LevelDebug,
|
||||
Level: slog.LevelError,
|
||||
}))
|
||||
|
||||
if os.Getenv("GH_PAT") != "" {
|
||||
|
||||
@@ -100,10 +100,12 @@ func LocateRefNodeWithContext(ctx context.Context, root *yaml.Node, idx *index.S
|
||||
if strings.HasPrefix(specPath, "http") {
|
||||
u, _ := url.Parse(specPath)
|
||||
p := ""
|
||||
if u.Path != "" {
|
||||
if u.Path != "" && explodedRefValue[0] != "" {
|
||||
p = filepath.Dir(u.Path)
|
||||
}
|
||||
if p != "" && explodedRefValue[0] != "" {
|
||||
u.Path = filepath.Join(p, explodedRefValue[0])
|
||||
}
|
||||
u.Fragment = ""
|
||||
rv = fmt.Sprintf("%s#%s", u.String(), explodedRefValue[1])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user