update more tools

This commit is contained in:
duwenxin
2026-02-04 01:20:15 -05:00
parent 9ff6fd6830
commit 2583c5adc9
84 changed files with 406 additions and 204 deletions

View File

@@ -234,7 +234,7 @@ func (t Tool) Invoke(ctx context.Context, resourceMgr tools.SourceProvider, para
service, err := source.GetService(ctx, string(accessToken))
if err != nil {
return nil, util.ProecessGcpError(err)
return nil, util.ProcessGcpError(err)
}
delay := t.Delay
@@ -252,7 +252,7 @@ func (t Tool) Invoke(ctx context.Context, resourceMgr tools.SourceProvider, para
op, err := source.GetWaitForOperations(ctx, service, project, operationID, cloudSQLConnectionMessageTemplate, delay)
if err != nil {
return nil, util.ProecessGcpError(err)
return nil, util.ProcessGcpError(err)
} else if op != nil {
return op, nil
}