[#27] *: Resolve godot linter warnings

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-05-03 13:46:07 +03:00
parent d2b7fd3682
commit 63915bb7a5
3 changed files with 12 additions and 12 deletions

View file

@ -15,20 +15,20 @@ const (
) )
// SysAttributePrefixNeoFS is a prefix of key to system attribute. // SysAttributePrefixNeoFS is a prefix of key to system attribute.
// Deprecated: use SysAttributePrefix // Deprecated: use SysAttributePrefix.
const SysAttributePrefixNeoFS = "__NEOFS__" const SysAttributePrefixNeoFS = "__NEOFS__"
const ( const (
// SysAttributeNameNeoFS is a string of human-friendly container name registered as the domain in NNS contract. // SysAttributeNameNeoFS is a string of human-friendly container name registered as the domain in NNS contract.
// Deprecated: use SysAttributeName // Deprecated: use SysAttributeName.
SysAttributeNameNeoFS = SysAttributePrefixNeoFS + "NAME" SysAttributeNameNeoFS = SysAttributePrefixNeoFS + "NAME"
// SysAttributeZoneNeoFS is a string of zone for container name. // SysAttributeZoneNeoFS is a string of zone for container name.
// Deprecated: use SysAttributeZone // Deprecated: use SysAttributeZone.
SysAttributeZoneNeoFS = SysAttributePrefixNeoFS + "ZONE" SysAttributeZoneNeoFS = SysAttributePrefixNeoFS + "ZONE"
// SysAttributeHomomorphicHashingNeoFS is a container's homomorphic hashing state. // SysAttributeHomomorphicHashingNeoFS is a container's homomorphic hashing state.
// Deprecated: use SysAttributeHomomorphicHashing // Deprecated: use SysAttributeHomomorphicHashing.
SysAttributeHomomorphicHashingNeoFS = SysAttributePrefixNeoFS + "DISABLE_HOMOMORPHIC_HASHING" SysAttributeHomomorphicHashingNeoFS = SysAttributePrefixNeoFS + "DISABLE_HOMOMORPHIC_HASHING"
) )

View file

@ -26,26 +26,26 @@ const (
) )
// SysAttributePrefixNeoFS is a prefix of key to system attribute. // SysAttributePrefixNeoFS is a prefix of key to system attribute.
// Deprecated: use SysAttributePrefix // Deprecated: use SysAttributePrefix.
const SysAttributePrefixNeoFS = "__NEOFS__" const SysAttributePrefixNeoFS = "__NEOFS__"
const ( const (
// SysAttributeUploadIDNeoFS marks smaller parts of a split bigger object. // SysAttributeUploadIDNeoFS marks smaller parts of a split bigger object.
// Deprecated: use SysAttributeUploadID // Deprecated: use SysAttributeUploadID.
SysAttributeUploadIDNeoFS = SysAttributePrefixNeoFS + "UPLOAD_ID" SysAttributeUploadIDNeoFS = SysAttributePrefixNeoFS + "UPLOAD_ID"
// SysAttributeExpEpochNeoFS tells GC to delete object after that epoch. // SysAttributeExpEpochNeoFS tells GC to delete object after that epoch.
// Deprecated: use SysAttributeExpEpoch // Deprecated: use SysAttributeExpEpoch.
SysAttributeExpEpochNeoFS = SysAttributePrefixNeoFS + "EXPIRATION_EPOCH" SysAttributeExpEpochNeoFS = SysAttributePrefixNeoFS + "EXPIRATION_EPOCH"
// SysAttributeTickEpochNeoFS defines what epoch must produce object // SysAttributeTickEpochNeoFS defines what epoch must produce object
// notification. // notification.
// Deprecated: use SysAttributeTickEpoch // Deprecated: use SysAttributeTickEpoch.
SysAttributeTickEpochNeoFS = SysAttributePrefixNeoFS + "TICK_EPOCH" SysAttributeTickEpochNeoFS = SysAttributePrefixNeoFS + "TICK_EPOCH"
// SysAttributeTickTopicNeoFS defines what topic object notification // SysAttributeTickTopicNeoFS defines what topic object notification
// must be sent to. // must be sent to.
// Deprecated: use SysAttributeTickTopic // Deprecated: use SysAttributeTickTopic.
SysAttributeTickTopicNeoFS = SysAttributePrefixNeoFS + "TICK_TOPIC" SysAttributeTickTopicNeoFS = SysAttributePrefixNeoFS + "TICK_TOPIC"
) )

View file

@ -16,19 +16,19 @@ const (
) )
// ReservedXHeaderPrefixNeoFS is a prefix of keys to "well-known" X-headers. // ReservedXHeaderPrefixNeoFS is a prefix of keys to "well-known" X-headers.
// Deprecated: use ReservedXHeaderPrefix // Deprecated: use ReservedXHeaderPrefix.
const ReservedXHeaderPrefixNeoFS = "__NEOFS__" const ReservedXHeaderPrefixNeoFS = "__NEOFS__"
const ( const (
// XHeaderNetmapEpochNeoFS is a key to the reserved X-header that specifies netmap epoch // XHeaderNetmapEpochNeoFS is a key to the reserved X-header that specifies netmap epoch
// to use for object placement calculation. If set to '0' or not set, the current // to use for object placement calculation. If set to '0' or not set, the current
// epoch only will be used. // epoch only will be used.
// Deprecated: use XHeaderNetmapEpoch // Deprecated: use XHeaderNetmapEpoch.
XHeaderNetmapEpochNeoFS = ReservedXHeaderPrefixNeoFS + "NETMAP_EPOCH" XHeaderNetmapEpochNeoFS = ReservedXHeaderPrefixNeoFS + "NETMAP_EPOCH"
// XHeaderNetmapLookupDepthNeoFS is a key to the reserved X-header that limits // XHeaderNetmapLookupDepthNeoFS is a key to the reserved X-header that limits
// how many past epochs back the node will can lookup. If set to '0' or not // how many past epochs back the node will can lookup. If set to '0' or not
// set, the current epoch only will be used. // set, the current epoch only will be used.
// Deprecated: use XHeaderNetmapLookupDepth // Deprecated: use XHeaderNetmapLookupDepth.
XHeaderNetmapLookupDepthNeoFS = ReservedXHeaderPrefixNeoFS + "NETMAP_LOOKUP_DEPTH" XHeaderNetmapLookupDepthNeoFS = ReservedXHeaderPrefixNeoFS + "NETMAP_LOOKUP_DEPTH"
) )