 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>
		
			
				
	
	
		
			70 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| // GinkgoConfigType has been deprecated and its equivalent now lives in
 | |
| // the types package.  You can no longer access Ginkgo configuration from the config
 | |
| // package.  Instead use the DSL's GinkgoConfiguration() function to get copies of the
 | |
| // current configuration
 | |
| //
 | |
| // GinkgoConfigType is still here so custom V1 reporters do not result in a compilation error
 | |
| // It will be removed in a future minor release of Ginkgo
 | |
| type GinkgoConfigType = DeprecatedGinkgoConfigType
 | |
| type DeprecatedGinkgoConfigType struct {
 | |
| 	RandomSeed         int64
 | |
| 	RandomizeAllSpecs  bool
 | |
| 	RegexScansFilePath bool
 | |
| 	FocusStrings       []string
 | |
| 	SkipStrings        []string
 | |
| 	SkipMeasurements   bool
 | |
| 	FailOnPending      bool
 | |
| 	FailFast           bool
 | |
| 	FlakeAttempts      int
 | |
| 	EmitSpecProgress   bool
 | |
| 	DryRun             bool
 | |
| 	DebugParallel      bool
 | |
| 
 | |
| 	ParallelNode  int
 | |
| 	ParallelTotal int
 | |
| 	SyncHost      string
 | |
| 	StreamHost    string
 | |
| }
 | |
| 
 | |
| // DefaultReporterConfigType has been deprecated and its equivalent now lives in
 | |
| // the types package.  You can no longer access Ginkgo configuration from the config
 | |
| // package.  Instead use the DSL's GinkgoConfiguration() function to get copies of the
 | |
| // current configuration
 | |
| //
 | |
| // DefaultReporterConfigType is still here so custom V1 reporters do not result in a compilation error
 | |
| // It will be removed in a future minor release of Ginkgo
 | |
| type DefaultReporterConfigType = DeprecatedDefaultReporterConfigType
 | |
| type DeprecatedDefaultReporterConfigType struct {
 | |
| 	NoColor           bool
 | |
| 	SlowSpecThreshold float64
 | |
| 	NoisyPendings     bool
 | |
| 	NoisySkippings    bool
 | |
| 	Succinct          bool
 | |
| 	Verbose           bool
 | |
| 	FullTrace         bool
 | |
| 	ReportPassed      bool
 | |
| 	ReportFile        string
 | |
| }
 | |
| 
 | |
| // Sadly there is no way to gracefully deprecate access to these global config variables.
 | |
| // Users who need access to Ginkgo's configuration should use the DSL's GinkgoConfiguration() method
 | |
| // These new unwieldy type names exist to give users a hint when they try to compile and the compilation fails
 | |
| type GinkgoConfigIsNoLongerAccessibleFromTheConfigPackageUseTheDSLsGinkgoConfigurationFunctionInstead struct{}
 | |
| 
 | |
| // Sadly there is no way to gracefully deprecate access to these global config variables.
 | |
| // Users who need access to Ginkgo's configuration should use the DSL's GinkgoConfiguration() method
 | |
| // These new unwieldy type names exist to give users a hint when they try to compile and the compilation fails
 | |
| var GinkgoConfig = GinkgoConfigIsNoLongerAccessibleFromTheConfigPackageUseTheDSLsGinkgoConfigurationFunctionInstead{}
 | |
| 
 | |
| // Sadly there is no way to gracefully deprecate access to these global config variables.
 | |
| // Users who need access to Ginkgo's configuration should use the DSL's GinkgoConfiguration() method
 | |
| // These new unwieldy type names exist to give users a hint when they try to compile and the compilation fails
 | |
| type DefaultReporterConfigIsNoLongerAccessibleFromTheConfigPackageUseTheDSLsGinkgoConfigurationFunctionInstead struct{}
 | |
| 
 | |
| // Sadly there is no way to gracefully deprecate access to these global config variables.
 | |
| // Users who need access to Ginkgo's configuration should use the DSL's GinkgoConfiguration() method
 | |
| // These new unwieldy type names exist to give users a hint when they try to compile and the compilation fails
 | |
| var DefaultReporterConfig = DefaultReporterConfigIsNoLongerAccessibleFromTheConfigPackageUseTheDSLsGinkgoConfigurationFunctionInstead{}
 |