Skip to content

Commit 12f6613

Browse files
authored
Fix MySQL database connect function header (#110)
1 parent 904c886 commit 12f6613

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/include/QualityControl/MySqlDatabase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class MySqlDatabase : public DatabaseInterface
3131
~MySqlDatabase() override;
3232

3333
void connect(std::string host, std::string database, std::string username, std::string password) override;
34-
void connect(const std::unordered_map& config) override;
34+
void connect(const std::unordered_map<std::string, std::string>& config) override;
3535
void store(std::shared_ptr<o2::quality_control::core::MonitorObject> mo) override;
3636
o2::quality_control::core::MonitorObject* retrieve(std::string taskName, std::string objectName) override;
3737
std::string retrieveJson(std::string taskName, std::string objectName) override;

0 commit comments

Comments
 (0)