Skip to content

Commit

Permalink
use unordered_map_string_key for common header storage in httpfs_v2
Browse files Browse the repository at this point in the history
Signed-off-by: Coldwings <[email protected]>
  • Loading branch information
Coldwings committed Feb 7, 2024
1 parent 49cac48 commit d6597c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/httpfs/httpfs_v2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class HttpFs_v2 : public fs::IFileSystem {
class HttpFile_v2 : public fs::VirtualReadOnlyFile {
public:
std::string m_url;
std::unordered_map<std::string, std::string> m_common_header;
unordered_map_string_key<std::string> m_common_header;
HttpFs_v2* m_fs;
struct stat m_stat;
uint64_t m_stat_gettime = 0;
Expand Down

0 comments on commit d6597c9

Please sign in to comment.