@rubytech/taskmaster 1.12.2 → 1.12.3
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/build-info.json
CHANGED
|
@@ -283,8 +283,8 @@ export const tailscaleHandlers = {
|
|
|
283
283
|
combined.includes("not enabled on your tailnet")) {
|
|
284
284
|
const enableUrlMatch = combined.match(/https:\/\/login\.tailscale\.com\/f\/serve\S*/);
|
|
285
285
|
const enableUrl = enableUrlMatch?.[0] ?? "https://login.tailscale.com/admin/machines";
|
|
286
|
-
context.logGateway.warn(`tailscale.serve.enable: Serve not enabled on tailnet`);
|
|
287
|
-
respond(false, { enableUrl }, errorShape(ErrorCodes.INVALID_REQUEST,
|
|
286
|
+
context.logGateway.warn(`tailscale.serve.enable: Serve not enabled on tailnet — enable at ${enableUrl}`);
|
|
287
|
+
respond(false, { enableUrl }, errorShape(ErrorCodes.INVALID_REQUEST, `Serve is not enabled on your Tailscale account. Enable it here: ${enableUrl}`));
|
|
288
288
|
return;
|
|
289
289
|
}
|
|
290
290
|
context.logGateway.warn(`tailscale.serve.enable pre-flight failed: ${combined.slice(0, 500)}`);
|