You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to add a comma and a semicolon to this on line 43: my $foo = GRNOC::Config->new(config_file => '/etc/grnoc/db.xml', debug => 0, force_array => 0 schema => '/path/to/schema.csd')
should be: my $foo = GRNOC::Config->new(config_file => '/etc/grnoc/db.xml', debug => 0, force_array => 0, schema => '/path/to/schema.csd');
Edit: Noticed the missing semicolon
The text was updated successfully, but these errors were encountered:
Need to add a comma and a semicolon to this on line 43:
my $foo = GRNOC::Config->new(config_file => '/etc/grnoc/db.xml', debug => 0, force_array => 0 schema => '/path/to/schema.csd')
should be:
my $foo = GRNOC::Config->new(config_file => '/etc/grnoc/db.xml', debug => 0, force_array => 0, schema => '/path/to/schema.csd');
Edit: Noticed the missing semicolon
The text was updated successfully, but these errors were encountered: