We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 110ee91 commit 3176131Copy full SHA for 3176131
packages/atlas-service/src/atlas-service.ts
@@ -78,6 +78,7 @@ export class AtlasService {
78
// https://github.com/10gen/mms/blob/9f858bb987aac6aa80acfb86492dd74c89cbb862/client/packages/project/common/ajaxPrefilter.ts#L34-L49
79
return this.cloudEndpoint(path);
80
}
81
+ // TODO (COMPASS-9663): these should come from the config property per environment
82
userDataEndpoint(path?: string): string {
83
return `https://cluster-connection.cloud-dev.mongodb.com/userData${normalizePath(
84
path
@@ -138,6 +139,7 @@ export class AtlasService {
138
139
...init?.headers,
140
...authHeaders,
141
},
142
+ credentials: 'include',
143
});
144
145
async automationAgentRequest(
0 commit comments