AlistGo/alist · error

create folder failed: retry limit reached

Error message

create folder failed: retry limit reached

What it means

Error "create folder failed: retry limit reached" thrown in AlistGo/alist.

Source

Thrown at drivers/bitqiu/driver.go:247

				ParentID:     newParentID,
			}
			obj, err := resource.toObject(newParentID, parentPath)
			if err != nil {
				return nil, err
			}
			if o, ok := obj.(*Object); ok {
				o.ParentID = newParentID
			}
			return obj, nil
		case "10401", "10404":
			if err := d.login(ctx); err != nil {
				return nil, err
			}
		default:
			return nil, fmt.Errorf("create folder failed: %s", resp.Message)
		}
	}
	return nil, fmt.Errorf("create folder failed: retry limit reached")
}

func (d *BitQiu) Move(ctx context.Context, srcObj, dstDir model.Obj) (model.Obj, error) {
	if d.userID == "" {
		if err := d.login(ctx); err != nil {
			return nil, err
		}
	}

	targetParentID := d.resolveParentID(dstDir)
	form := map[string]string{
		"dirIds":      "",
		"fileIds":     "",
		"parentId":    targetParentID,
		"org_channel": orgChannel,
	}
	if srcObj.IsDir() {
		form["dirIds"] = srcObj.GetID()

View on GitHub (pinned to 843d9dc814)

Solutions

  1. The operation kept failing through all retries; check the account status, network, and provider service health, then try again later.

When it happens

Trigger: Thrown at drivers/bitqiu/driver.go:247 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of AlistGo/alist@843d9dc814 (2026-08-15). Data as JSON: /api/errors/744dea62ae4a8cca. Report an issue: GitHub.