Skip to content

Commit

Permalink
use newer splunkrum api
Browse files Browse the repository at this point in the history
  • Loading branch information
seemk committed Nov 13, 2023
1 parent be8a923 commit c4bd3d4
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,14 @@ struct SauceLabsTestApp {

try! server.start(8989)

SplunkRum.initialize(
SplunkRumBuilder.init(
beaconUrl: receiverEndpoint("/v1/traces"),
rumAuth: "FAKE_RUM_AUTH",
options: SplunkRumOptions(
allowInsecureBeacon: true,
debug: true,
globalAttributes: [:]
)
rumAuth: "FAKE_RUM_AUTH"
)
.allowInsecureBeacon(enabled: true)
.debug(enabled: true)
.globalAttributes(globalAttributes: [:])
.build()

if #available(iOS 14.0, *) {
TestApp.main()
Expand Down

0 comments on commit c4bd3d4

Please sign in to comment.