Skip to content

Commit 0457096

Browse files
committed
Remove mention of WP alpha in more lane comments
1 parent 85ef246 commit 0457096

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fastlane/lanes/build.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,15 @@
123123
track: options[:track],
124124
release_status: 'draft',
125125
metadata_path: metadata_dir,
126-
skip_upload_metadata: (options[:track] != 'production'), # Only update app title/description/etc. if uploading for Production, skip for alpha/beta tracks
126+
skip_upload_metadata: (options[:track] != 'production'), # Only update app title/description/etc. if uploading for Production, skip for beta tracks
127127
skip_upload_changelogs: false,
128128
skip_upload_images: true,
129129
skip_upload_screenshots: true,
130130
json_key: UPLOAD_TO_PLAY_STORE_JSON_KEY
131131
)
132132
rescue FastlaneCore::Interface::FastlaneError => e
133133
# Sometimes the upload fails randomly with a "Google Api Error: Invalid request - This Edit has been deleted.".
134-
# It seems one reason might be a race condition when we do multiple edits at the exact same time (WP alpha, WP beta, JP beta). Retrying usually fixes it
134+
# It seems one reason might be a race condition when we do multiple edits at the exact same time (WP beta, JP beta). Retrying usually fixes it
135135
if e.message.start_with?('Google Api Error') && (retry_count -= 1) > 0
136136
UI.error 'Upload failed with Google API error. Retrying in 2mn...'
137137
sleep(120)

0 commit comments

Comments
 (0)