summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMatthew Leeds <matthew.leeds@endlessm.com>2019-03-05 13:28:00 -0800
committerAtomic Bot <atomic-devel@projectatomic.io>2019-03-06 23:44:50 +0000
commit807f2baa53d26eb73ddc0d29d7fb36d623911492 (patch)
treef7f6144244f85e01ab7aee5f559e77ad3762d8e9 /common
parent4e8178916711bfe30c031b26633aef50ffc16e5e (diff)
downloadflatpak-807f2baa53d26eb73ddc0d29d7fb36d623911492.tar.gz
Move interpretation of OSTREE_DEBUG_HTTP
It makes more sense to have this in flatpak_create_soup_session() so every caller of that interprets the env var. Closes: #2740 Approved by: matthiasclasen
Diffstat (limited to 'common')
-rw-r--r--common/flatpak-dir.c3
-rw-r--r--common/flatpak-utils-http.c3
2 files changed, 3 insertions, 3 deletions
diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c
index 2c6bf0bc..17f670c5 100644
--- a/common/flatpak-dir.c
+++ b/common/flatpak-dir.c
@@ -4059,9 +4059,6 @@ ensure_soup_session (FlatpakDir *self)
soup_session = flatpak_create_soup_session (PACKAGE_STRING);
- if (g_getenv ("OSTREE_DEBUG_HTTP"))
- soup_session_add_feature (soup_session, (SoupSessionFeature *) soup_logger_new (SOUP_LOGGER_LOG_BODY, 500));
-
g_once_init_leave (&self->soup_session, soup_session);
}
}
diff --git a/common/flatpak-utils-http.c b/common/flatpak-utils-http.c
index 6a77f6a6..8155a88f 100644
--- a/common/flatpak-utils-http.c
+++ b/common/flatpak-utils-http.c
@@ -504,6 +504,9 @@ flatpak_create_soup_session (const char *user_agent)
g_object_set (soup_session, SOUP_SESSION_PROXY_URI, proxy_uri, NULL);
}
+ if (g_getenv ("OSTREE_DEBUG_HTTP"))
+ soup_session_add_feature (soup_session, (SoupSessionFeature *) soup_logger_new (SOUP_LOGGER_LOG_BODY, 500));
+
return soup_session;
}