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 cc6825f commit dc755b3Copy full SHA for dc755b3
src/main/java/com/contentstack/sdk/CSHttpConnection.java
@@ -184,6 +184,7 @@ public void send() {
184
private void getService(String requestUrl) throws IOException {
185
Retrofit retrofit = new Retrofit.Builder().baseUrl(this.endpoint).build();
186
APIService service = retrofit.create(APIService.class);
187
+ // [Removed environment deletion]
188
this.headers.put(X_USER_AGENT, CLIENT_USER_AGENT);
189
this.headers.put(CONTENT_TYPE, APPLICATION_JSON);
190
Response<ResponseBody> response = service.getRequest(requestUrl, this.headers).execute();
0 commit comments