We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1759aad + 43971db commit 3b91854Copy full SHA for 3b91854
contrib/config/config.json
@@ -6,6 +6,7 @@
6
"text/csv",
7
"text/xml;schema=\"ioos/0.6.1\""
8
],
9
+ "verbose": false,
10
"schedule": "0 * * * *"
11
},
12
{
@@ -15,7 +16,7 @@
15
16
17
"text/xml;subtype=\"om/1.0.0/profiles/ioos_sos/1.0\""
18
19
20
21
}
22
]
-
contrib/init/51_config
@@ -39,7 +39,9 @@ def generate_args(config_entry):
39
args.append('--sos_type')
40
args.append(config_entry['sos_type'])
41
42
- args.append('--verbose')
+ if config_entry.get('verbose') == True:
43
+ args.append('--verbose')
44
+
45
return ' '.join(args)
46
47
@@ -73,4 +75,3 @@ def main():
73
75
74
76
if __name__ == '__main__':
77
sys.exit(main())
0 commit comments