Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion 29 src/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,32 @@
end
end

File.write(connection_filepath, JSON.fast_generate(connection_information))
# Write connection information atomically so readers never see a partial file
begin
json = JSON.fast_generate(connection_information)

dir = File.dirname(connection_filepath)
base = File.basename(connection_filepath)
tmp_path = File.join(dir, ".#{base}.tmp-#{Process.pid}")

# Write to a temp file in the same directory as the final target
File.open(tmp_path, "wb") do |f|
f.write(json)
f.flush
# ensure contents are on disk before swap
f.fsync
end

# Atomic swap into place via file rename
File.rename(tmp_path, connection_filepath)
rescue Exception => e
begin
File.unlink(tmp_path) if tmp_path && File.exist?(tmp_path)
rescue StandardError
# ignore
end

raise e
end

listener.join
Morty Proxy This is a proxified and sanitized view of the page, visit original site.