pilot/lib/pilot/options.rb in fastlane-2.183.2 vs pilot/lib/pilot/options.rb in fastlane-2.184.0

- old
+ new

@@ -284,9 +284,17 @@ default_value: 30, type: Integer, verify_block: proc do |value| UI.user_error!("Please enter a valid positive number of seconds") unless value.to_i > 0 end), + FastlaneCore::ConfigItem.new(key: :wait_processing_timeout_duration, + env_name: "PILOT_WAIT_PROCESSING_TIMEOUT_DURATION", + description: "Timeout duration in seconds to wait for App Store Connect processing. If set, after exceeding timeout duration, this will `force stop` to wait for App Store Connect processing and exit with exception", + optional: true, + type: Integer, + verify_block: proc do |value| + UI.user_error!("Please enter a valid positive number of seconds") unless value.to_i > 0 + end), FastlaneCore::ConfigItem.new(key: :wait_for_uploaded_build, env_name: "PILOT_WAIT_FOR_UPLOADED_BUILD", deprecated: "No longer needed with the transition over to the App Store Connect API", description: "Use version info from uploaded ipa file to determine what build to use for distribution. If set to false, latest processing or any latest build will be used", is_string: false,