diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2025-07-16 23:39:27 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-16 23:39:27 -0700 |
| commit | 69553e5ba6d46ed924b0c3adc3f8d9666550999a (patch) | |
| tree | 7711c4d9fe1919d2c6eaa841779bcde6e24b0248 /weed/operation/assign_file_id.go | |
| parent | a524b4f485ce5aa2f234c742bd7d1e75386f569b (diff) | |
| download | seaweedfs-69553e5ba6d46ed924b0c3adc3f8d9666550999a.tar.xz seaweedfs-69553e5ba6d46ed924b0c3adc3f8d9666550999a.zip | |
convert error fromating to %w everywhere (#6995)
Diffstat (limited to 'weed/operation/assign_file_id.go')
| -rw-r--r-- | weed/operation/assign_file_id.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/operation/assign_file_id.go b/weed/operation/assign_file_id.go index eb54c674b..61fd2de48 100644 --- a/weed/operation/assign_file_id.go +++ b/weed/operation/assign_file_id.go @@ -80,7 +80,7 @@ func (ap *singleThreadAssignProxy) doAssign(grpcConnection *grpc.ClientConn, pri ap.assignClient, err = client.StreamAssign(context.Background()) if err != nil { ap.assignClient = nil - return nil, fmt.Errorf("fail to create stream assign client: %v", err) + return nil, fmt.Errorf("fail to create stream assign client: %w", err) } } @@ -105,7 +105,7 @@ func (ap *singleThreadAssignProxy) doAssign(grpcConnection *grpc.ClientConn, pri WritableVolumeCount: request.WritableVolumeCount, } if err = ap.assignClient.Send(req); err != nil { - return nil, fmt.Errorf("StreamAssignSend: %v", err) + return nil, fmt.Errorf("StreamAssignSend: %w", err) } resp, grpcErr := ap.assignClient.Recv() if grpcErr != nil { |
