Skip to content

Commit a53c220

Browse files
hyangahalicemerrick
authored andcommitted
extension/src/goDeveloperSurvey: prepare for 2024 H2 go dev survey
Fixes #3517 Change-Id: Idee1f0ace52cce9ec393f9dff5bd626280331d57 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/609277 Commit-Queue: Hyang-Ah Hana Kim <[email protected]> kokoro-CI: kokoro <[email protected]> Reviewed-by: Alice Merrick <[email protected]>
1 parent c7d88dc commit a53c220

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extension/src/goDeveloperSurvey.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import { daysBetween, flushSurveyConfig, getStateConfig, minutesBetween, timeMin
1212
import { GoExtensionContext } from './context';
1313

1414
// Start and end dates of the survey.
15-
export const startDate = new Date('Jan 23 2024 00:00:00 GMT');
16-
export const endDate = new Date('Feb 11 2024 00:00:00 GMT');
15+
export const startDate = new Date('Sep 9 2024 00:00:00 GMT');
16+
export const endDate = new Date('Sep 23 2024 00:00:00 GMT');
1717

1818
// DeveloperSurveyConfig is the set of global properties used to determine if
1919
// we should prompt a user to take the gopls survey.
@@ -124,7 +124,7 @@ export function shouldPromptForSurvey(now: Date, cfg: DeveloperSurveyConfig): De
124124
export async function promptForDeveloperSurvey(cfg: DeveloperSurveyConfig, now: Date): Promise<DeveloperSurveyConfig> {
125125
const selected = await vscode.window.showInformationMessage(
126126
`Help shape Go’s future! Would you like to help ensure that Go is meeting your needs
127-
by participating in this 10-minute Go Developer Survey (January 2024) before ${endDate.toDateString()}?`,
127+
by participating in this 10-minute Go Developer Survey (September 2024) before ${endDate.toDateString()}?`,
128128
'Yes',
129129
'Remind me later',
130130
'Never'
@@ -139,7 +139,7 @@ by participating in this 10-minute Go Developer Survey (January 2024) before ${e
139139
{
140140
cfg.lastDateAccepted = now;
141141
cfg.prompt = true;
142-
const surveyURL = 'https://google.qualtrics.com/jfe/form/SV_083SVAUCji98YeO?s=p';
142+
const surveyURL = 'https://google.qualtrics.com/jfe/form/SV_ei0CDV2K9qQIsp8?s=p';
143143
await vscode.env.openExternal(vscode.Uri.parse(surveyURL));
144144
}
145145
break;

0 commit comments

Comments
 (0)