- Updated benchmark and test functions to utilize node configurations instead of pool configurations for improved clarity and consistency. - Refactored related setup functions and test cases to align with the new node-based architecture. - Adjusted error messages and documentation to reflect the transition from pool to node terminology. Made-with: Cursor
10 lines
291 B
Go
10 lines
291 B
Go
package sandbox
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotAvailable = errors.New("sandbox: not available (no nodes registered)")
|
|
ErrNotFound = errors.New("sandbox: not found")
|
|
ErrNodeNotFound = errors.New("sandbox: node not found")
|
|
ErrNodeMissing = errors.New("sandbox: node ID is required")
|
|
)
|