diff --git a/go/samples/http/mysqldb/mysql_driver.go b/go/samples/http/mysqldb/mysql_driver.go index 36160801..4b2d5ad1 100644 --- a/go/samples/http/mysqldb/mysql_driver.go +++ b/go/samples/http/mysqldb/mysql_driver.go @@ -12,7 +12,6 @@ import ( func ConnectMySQL(connection string) *sql.DB { db, err := gosql.Open("mysql", connection, core.CommenterOptions{ Config: core.CommenterConfig{EnableDBDriver: true, EnableRoute: true, EnableAction: true, EnableFramework: true, EnableTraceparent: true, EnableApplication: true}, - Tags: core.StaticTags{}, }) if err != nil { log.Fatalf("Failed to connect to MySQL(%q), error: %v", connection, err) diff --git a/go/samples/http/pgdb/pg_driver.go b/go/samples/http/pgdb/pg_driver.go index 68538324..52a7c49b 100644 --- a/go/samples/http/pgdb/pg_driver.go +++ b/go/samples/http/pgdb/pg_driver.go @@ -12,7 +12,6 @@ import ( func ConnectPG(connection string) *sql.DB { db, err := gosql.Open("postgres", connection, core.CommenterOptions{ Config: core.CommenterConfig{EnableDBDriver: true, EnableRoute: true, EnableAction: true, EnableFramework: true, EnableTraceparent: true, EnableApplication: true}, - Tags: core.StaticTags{}, }) if err != nil { log.Fatalf("Failed to connect to PG(%q), error: %v", connection, err)