File tree Expand file tree Collapse file tree 2 files changed +0
-19
lines changed
Expand file tree Collapse file tree 2 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -163,17 +163,6 @@ sentry__run_write_external(
163163 return write_envelope (run -> external_path , envelope );
164164}
165165
166- bool
167- sentry__run_write_cache (
168- const sentry_run_t * run , const sentry_envelope_t * envelope )
169- {
170- if (sentry__path_create_dir_all (run -> cache_path ) != 0 ) {
171- SENTRY_ERRORF ("mkdir failed: \"%s\"" , run -> cache_path -> path );
172- return false;
173- }
174- return write_envelope (run -> cache_path , envelope );
175- }
176-
177166bool
178167sentry__run_move_cache (
179168 const sentry_run_t * run , const sentry_path_t * src , const char * dst )
Original file line number Diff line number Diff line change @@ -64,14 +64,6 @@ bool sentry__run_write_session(
6464 */
6565bool sentry__run_clear_session (const sentry_run_t * run );
6666
67- /**
68- * This will serialize and write the given envelope to disk into a file named
69- * like so:
70- * `<database>/cache/<event-uuid>.envelope`
71- */
72- bool sentry__run_write_cache (
73- const sentry_run_t * run , const sentry_envelope_t * envelope );
74-
7567/**
7668 * Moves `src` to `<database>/cache/<dst>`. If `dst` is NULL, the filename of
7769 * `src` is used.
You can’t perform that action at this time.
0 commit comments