mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 23:22:26 -05:00 
			
		
		
		
	add comment explaining store.lock
This commit is contained in:
		
					parent
					
						
							
								d9a778a795
							
						
					
				
			
			
				commit
				
					
						9db58dfd57
					
				
			
		
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -102,7 +102,12 @@ var Start action.GTSAction = func(ctx context.Context) error { | ||||||
| 	// Open the storage backend | 	// Open the storage backend | ||||||
| 	storageBasePath := viper.GetString(config.Keys.StorageLocalBasePath) | 	storageBasePath := viper.GetString(config.Keys.StorageLocalBasePath) | ||||||
| 	storage, err := kv.OpenFile(storageBasePath, &storage.DiskConfig{ | 	storage, err := kv.OpenFile(storageBasePath, &storage.DiskConfig{ | ||||||
| 		LockFile: path.Join(storageBasePath, "store.lock"), // put the store lockfile in the storage dir itself | 		// Put the store lockfile in the storage dir itself. | ||||||
|  | 		// Normally this would not be safe, since we could end up | ||||||
|  | 		// overwriting the lockfile if we store a file called 'store.lock'. | ||||||
|  | 		// However, in this case it's OK because the keys are set by | ||||||
|  | 		// GtS and not the user, so we know we're never going to overwrite it. | ||||||
|  | 		LockFile: path.Join(storageBasePath, "store.lock"),  | ||||||
| 	}) | 	}) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return fmt.Errorf("error creating storage backend: %s", err) | 		return fmt.Errorf("error creating storage backend: %s", err) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue