 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			85 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package errors defines the error variables that may be returned
 | |
| // during bbolt operations.
 | |
| package errors
 | |
| 
 | |
| import "errors"
 | |
| 
 | |
| // These errors can be returned when opening or calling methods on a DB.
 | |
| var (
 | |
| 	// ErrDatabaseNotOpen is returned when a DB instance is accessed before it
 | |
| 	// is opened or after it is closed.
 | |
| 	ErrDatabaseNotOpen = errors.New("database not open")
 | |
| 
 | |
| 	// ErrInvalid is returned when both meta pages on a database are invalid.
 | |
| 	// This typically occurs when a file is not a bolt database.
 | |
| 	ErrInvalid = errors.New("invalid database")
 | |
| 
 | |
| 	// ErrInvalidMapping is returned when the database file fails to get mapped.
 | |
| 	ErrInvalidMapping = errors.New("database isn't correctly mapped")
 | |
| 
 | |
| 	// ErrVersionMismatch is returned when the data file was created with a
 | |
| 	// different version of Bolt.
 | |
| 	ErrVersionMismatch = errors.New("version mismatch")
 | |
| 
 | |
| 	// ErrChecksum is returned when a checksum mismatch occurs on either of the two meta pages.
 | |
| 	ErrChecksum = errors.New("checksum error")
 | |
| 
 | |
| 	// ErrTimeout is returned when a database cannot obtain an exclusive lock
 | |
| 	// on the data file after the timeout passed to Open().
 | |
| 	ErrTimeout = errors.New("timeout")
 | |
| )
 | |
| 
 | |
| // These errors can occur when beginning or committing a Tx.
 | |
| var (
 | |
| 	// ErrTxNotWritable is returned when performing a write operation on a
 | |
| 	// read-only transaction.
 | |
| 	ErrTxNotWritable = errors.New("tx not writable")
 | |
| 
 | |
| 	// ErrTxClosed is returned when committing or rolling back a transaction
 | |
| 	// that has already been committed or rolled back.
 | |
| 	ErrTxClosed = errors.New("tx closed")
 | |
| 
 | |
| 	// ErrDatabaseReadOnly is returned when a mutating transaction is started on a
 | |
| 	// read-only database.
 | |
| 	ErrDatabaseReadOnly = errors.New("database is in read-only mode")
 | |
| 
 | |
| 	// ErrFreePagesNotLoaded is returned when a readonly transaction without
 | |
| 	// preloading the free pages is trying to access the free pages.
 | |
| 	ErrFreePagesNotLoaded = errors.New("free pages are not pre-loaded")
 | |
| )
 | |
| 
 | |
| // These errors can occur when putting or deleting a value or a bucket.
 | |
| var (
 | |
| 	// ErrBucketNotFound is returned when trying to access a bucket that has
 | |
| 	// not been created yet.
 | |
| 	ErrBucketNotFound = errors.New("bucket not found")
 | |
| 
 | |
| 	// ErrBucketExists is returned when creating a bucket that already exists.
 | |
| 	ErrBucketExists = errors.New("bucket already exists")
 | |
| 
 | |
| 	// ErrBucketNameRequired is returned when creating a bucket with a blank name.
 | |
| 	ErrBucketNameRequired = errors.New("bucket name required")
 | |
| 
 | |
| 	// ErrKeyRequired is returned when inserting a zero-length key.
 | |
| 	ErrKeyRequired = errors.New("key required")
 | |
| 
 | |
| 	// ErrKeyTooLarge is returned when inserting a key that is larger than MaxKeySize.
 | |
| 	ErrKeyTooLarge = errors.New("key too large")
 | |
| 
 | |
| 	// ErrValueTooLarge is returned when inserting a value that is larger than MaxValueSize.
 | |
| 	ErrValueTooLarge = errors.New("value too large")
 | |
| 
 | |
| 	// ErrIncompatibleValue is returned when trying to create or delete a bucket
 | |
| 	// on an existing non-bucket key or when trying to create or delete a
 | |
| 	// non-bucket key on an existing bucket key.
 | |
| 	ErrIncompatibleValue = errors.New("incompatible value")
 | |
| 
 | |
| 	// ErrSameBuckets is returned when trying to move a sub-bucket between
 | |
| 	// source and target buckets, while source and target buckets are the same.
 | |
| 	ErrSameBuckets = errors.New("the source and target are the same bucket")
 | |
| 
 | |
| 	// ErrDifferentDB is returned when trying to move a sub-bucket between
 | |
| 	// source and target buckets, while source and target buckets are in different database files.
 | |
| 	ErrDifferentDB = errors.New("the source and target buckets are in different database files")
 | |
| )
 |