do not hide linitng errors

Signed-off-by: Sergey Kanzhelev <S.Kanzhelev@live.com>
This commit is contained in:
Sergey Kanzhelev
2026-05-18 23:36:14 -07:00
parent ebb98be639
commit 7f10e9eb5f
8 changed files with 54 additions and 57 deletions

View File

@@ -114,10 +114,10 @@ message BootstrapResult {
// positive, and more verbose levels are negative. This is an open enum;
// unknown numeric values are preserved on the wire.
enum LogLevel {
LOG_LEVEL_INFO = 0;
LOG_LEVEL_INFO = 0;
LOG_LEVEL_TRACE = -8;
LOG_LEVEL_DEBUG = -4;
LOG_LEVEL_WARN = 4;
LOG_LEVEL_WARN = 4;
LOG_LEVEL_ERROR = 8;
LOG_LEVEL_FATAL = 10;
LOG_LEVEL_PANIC = 12;

View File

@@ -1,21 +1,20 @@
/*
Copyright The containerd Authors.
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
syntax = "proto3";
package containerd.types.transfer;
option go_package = "github.com/containerd/containerd/api/types/transfer";
@@ -24,16 +23,16 @@ option go_package = "github.com/containerd/containerd/api/types/transfer";
// filesystem. It acts as either a source or destination in a transfer
// operation, identifying the container and path for archive operations.
message ContainerPath {
string container_id = 1;
string path = 2;
string container_id = 1;
string path = 2;
// When true and path is a directory, return only the directory entry
// itself without walking into its contents. This is useful for
// stat-like operations where only the directory's metadata is needed.
bool no_walk = 3;
// When true and path is a directory, return only the directory entry
// itself without walking into its contents. This is useful for
// stat-like operations where only the directory's metadata is needed.
bool no_walk = 3;
// When true, preserve the UID/GID from tar headers when extracting
// files. When false, extracted files are owned by the extracting
// process.
bool preserve_ownership = 4;
// When true, preserve the UID/GID from tar headers when extracting
// files. When false, extracted files are owned by the extracting
// process.
bool preserve_ownership = 4;
}

View File

@@ -32,14 +32,14 @@ message WindowUpdate {
// direction). The client sends data through the stream and the
// server reads it.
message ReadStream {
string stream = 1;
string media_type = 2;
string stream = 1;
string media_type = 2;
}
// WriteStream carries data from the server to the client (export
// direction). The server writes data into the stream and the
// client receives it.
message WriteStream {
string stream = 1;
string media_type = 2;
string stream = 1;
string media_type = 2;
}