Skip to content

Commit

Permalink
Fix broken links in TimescaleDB NOTICE
Browse files Browse the repository at this point in the history
Link to Telemetry page explains more than disable it

Co-authored-by: Mike Freedman <mfreed@cs.princeton.edu>
  • Loading branch information
2 people authored and svenklemm committed May 31, 2021
1 parent ec06f9a commit 9fe90eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sql/notice.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BEGIN
THEN
telemetry_string = E'Note: Please enable telemetry to help us improve our product by running: ALTER DATABASE "' || current_database() || E'" SET timescaledb.telemetry_level = ''basic'';';
ELSE
telemetry_string = E'Note: TimescaleDB collects anonymous reports to better understand and assist our users.\nFor more information and how to disable, please see our docs https://docs.timescaledb.com/using-timescaledb/telemetry.';
telemetry_string = E'Note: TimescaleDB collects anonymous reports to better understand and assist our users.\nFor more information and how to disable, please see our docs https://docs.timescale.com/timescaledb/latest/how-to-guides/configuration/telemetry.';
END IF;

RAISE WARNING E'%\n%\n',
Expand All @@ -25,9 +25,9 @@ BEGIN

E'For more information on TimescaleDB, please visit the following links:\n\n'
||
E' 1. Getting started: https://docs.timescale.com/getting-started\n' ||
E' 2. API reference documentation: https://docs.timescale.com/api\n' ||
E' 3. How TimescaleDB is designed: https://docs.timescale.com/introduction/architecture\n',
E' 1. Getting started: https://docs.timescale.com/timescaledb/latest/getting-started\n' ||
E' 2. API reference documentation: https://docs.timescale.com/api/latest\n' ||
E' 3. How TimescaleDB is designed: https://docs.timescale.com/timescaledb/latest/overview/core-concepts\n',
telemetry_string;
END;
$$;

0 comments on commit 9fe90eb

Please sign in to comment.