Fix diagnostic for GEAR_SELECTION
This commit is contained in:
parent
369dd10a02
commit
c874158bd7
|
|
@ -374,13 +374,13 @@
|
|||
return profiles;
|
||||
}
|
||||
|
||||
gearUtils.postDiagnostic = function (operatingSystem, deviceInformation, selectedDeviceInfo, gearTest, frameBuffers, isAutomated) {
|
||||
gearUtils.postDiagnostic = async function (operatingSystem, deviceInformation, selectedDeviceInfo, gearTest, frameBuffers, isAutomated) {
|
||||
rest.createDiagnostic({
|
||||
type: 'GEAR_SELECTION',
|
||||
data: {
|
||||
client_type: context.JK.clientType(),
|
||||
client_id: context.JK.JamServer.clientID,
|
||||
summary: gearUtils.ftueSummary(operatingSystem, deviceInformation, selectedDeviceInfo, gearTest, frameBuffers, isAutomated)
|
||||
summary: await gearUtils.ftueSummary(operatingSystem, deviceInformation, selectedDeviceInfo, gearTest, frameBuffers, isAutomated)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
BUNDLE_GEMFILE=Gemfile.alt RAILS_ENV=development LOCAL_DEV=1 MODERN_OS=1 JAM_RUBY_VERSION=2.4.1 NO_WEBSOCKET_GATEWAY=1 bundle _1.17.3_ exec rails server -b 0.0.0.0 -p 3000
|
||||
|
|
@ -113,6 +113,8 @@ SampleApp::Application.configure do
|
|||
config.root_redirect_on = false
|
||||
|
||||
config.show_recording_debug_status = true
|
||||
config.gear_check_ignore_high_latency = true
|
||||
config.ftue_maximum_gear_latency = 200
|
||||
|
||||
config.video_conferencing_host = "http://localhost:3001"
|
||||
config.use_video_conferencing_server = true
|
||||
|
|
|
|||
Loading…
Reference in New Issue