@swmansion/argent 0.16.2-next.5 → 0.16.2-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tool-server.cjs +3 -1
- package/package.json +1 -1
package/dist/tool-server.cjs
CHANGED
|
@@ -140966,7 +140966,7 @@ var NOTIFY_REGISTER_TIMEOUT_MS = 2e3;
|
|
|
140966
140966
|
var MAX_START_ATTEMPTS = 2;
|
|
140967
140967
|
var RETRY_DELAY_MS = 1200;
|
|
140968
140968
|
var COLD_START_SIGNATURE = "Cannot find process matching name:";
|
|
140969
|
-
var STOP_GRACE_MS =
|
|
140969
|
+
var STOP_GRACE_MS = 3e5;
|
|
140970
140970
|
var STOP_TERM_MS = 5e3;
|
|
140971
140971
|
var STOP_KILL_MS = 5e3;
|
|
140972
140972
|
function enumerateRunningUserApps(udid) {
|
|
@@ -142786,6 +142786,8 @@ function registerTrace(store, traceFile) {
|
|
|
142786
142786
|
var nativeProfilerStopTool = {
|
|
142787
142787
|
id: "native-profiler-stop",
|
|
142788
142788
|
capability: capability24,
|
|
142789
|
+
// Packaging plus the export passes routinely exceed the 30s fetch timeout.
|
|
142790
|
+
longRunning: true,
|
|
142789
142791
|
description: `Stop native profiling and export trace data.
|
|
142790
142792
|
iOS: sends SIGINT to xctrace, waits for packaging, then exports CPU, hangs, and leaks XML.
|
|
142791
142793
|
Android: sends SIGTERM to the perfetto daemon, polls /proc/<pid>, then \`adb pull\`s the .pftrace.
|