I resolved the error by myself,
remove the quote given for priority value.
/root/nodebb/src/sitemap.js was
'{ url: '/page-1/', changefreq: 'daily', priority: ''0.3'' },
now
{ url: '/page-1/', changefreq: 'daily', priority: 0.3 },
remove the quotes from all occurrence.
Restart Nodebb.