mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-07-25 15:04:30 +00:00
Merge branch 'spelling-errors' of git://github.com/xamanu/mod_tile into xamanu-spelling-errors
This commit is contained in:
@ -30,7 +30,7 @@ Set the location of the config file used to configure the various parameters of
|
|||||||
like the mapnik style sheet. The default is /etc/renderd.conf
|
like the mapnik style sheet. The default is /etc/renderd.conf
|
||||||
.TP
|
.TP
|
||||||
\fB\-s\fR|\-\-slave
|
\fB\-s\fR|\-\-slave
|
||||||
Renderd can be used in a distributed fashion accross multiple rendering servers. The master renderd handles queuing and
|
Renderd can be used in a distributed fashion across multiple rendering servers. The master renderd handles queuing and
|
||||||
passes requests to the slaves. This parameter specifies which of the slave sections of renderd.conf applies to this instance
|
passes requests to the slaves. This parameter specifies which of the slave sections of renderd.conf applies to this instance
|
||||||
of renderd. The default is to use the master section
|
of renderd. The default is to use the master section
|
||||||
.TP
|
.TP
|
||||||
|
@ -688,7 +688,7 @@ int main(int argc, char **argv)
|
|||||||
syslog(LOG_ERR, "Failed to initialise request queue");
|
syslog(LOG_ERR, "Failed to initialise request queue");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
syslog(LOG_ERR, "Initiating reqyest_queue");
|
syslog(LOG_ERR, "Initiating request_queue");
|
||||||
|
|
||||||
xmlconfigitem maps[XMLCONFIGS_MAX];
|
xmlconfigitem maps[XMLCONFIGS_MAX];
|
||||||
bzero(maps, sizeof(xmlconfigitem) * XMLCONFIGS_MAX);
|
bzero(maps, sizeof(xmlconfigitem) * XMLCONFIGS_MAX);
|
||||||
|
@ -2412,7 +2412,7 @@ static const command_rec tile_cmds[] =
|
|||||||
mod_tile_cache_lastmod_factor_config, /* config action routine */
|
mod_tile_cache_lastmod_factor_config, /* config action routine */
|
||||||
NULL, /* argument to include in call */
|
NULL, /* argument to include in call */
|
||||||
OR_OPTIONS, /* where available */
|
OR_OPTIONS, /* where available */
|
||||||
"Set the factor by which the last modified determins cache expiry" /* directive description */
|
"Set the factor by which the last modified determines cache expiry" /* directive description */
|
||||||
),
|
),
|
||||||
AP_INIT_TAKE2(
|
AP_INIT_TAKE2(
|
||||||
"ModTileCacheDurationLowZoom", /* directive name */
|
"ModTileCacheDurationLowZoom", /* directive name */
|
||||||
|
@ -42,7 +42,7 @@ int recv_cmd(struct protocol * cmd, int fd, int block) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if ((cmd->ver > 3) || (cmd->ver < 1)) {
|
if ((cmd->ver > 3) || (cmd->ver < 1)) {
|
||||||
syslog(LOG_WARNING, "WARNING: Failed to recieve render cmd with unknown protocol version %i\n", cmd->ver);
|
syslog(LOG_WARNING, "WARNING: Failed to receive render cmd with unknown protocol version %i\n", cmd->ver);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
syslog(LOG_DEBUG, "DEBUG: Got incoming request with protocol version %i\n", cmd->ver);
|
syslog(LOG_DEBUG, "DEBUG: Got incoming request with protocol version %i\n", cmd->ver);
|
||||||
|
Reference in New Issue
Block a user