Lines Matching full:channel
51 // This list has to be sorted from least stable to most stable channel.
52 "canary-channel",
53 "dev-channel",
54 "beta-channel",
55 "stable-channel",
70 // Sanity check the channel names.
72 image_props_.current_channel = "stable-channel";
77 LOG(INFO) << "Running from channel " << image_props_.current_channel;
100 LOG(INFO) << "Disabling deltas as a channel change to "
104 // For now, disable delta updates if the current channel is different from
105 // the channel that we're sending to the update server because such updates
107 // the expected hash due to the different channel in /etc/lsb-release.
146 << ". Current channel = " << image_props_.current_channel
147 << ", existing target channel = "
149 << ", download channel = " << download_channel_;
157 "Invalid channel name \"%s\", valid names are: %s",
169 *error_message = "Error storing the new channel value.";
179 LOG(INFO) << "Download channel for this attempt = " << download_channel_;
191 bool OmahaRequestParams::IsValidChannel(const string& channel) const {
192 return GetChannelIndex(channel) >= 0;
200 int OmahaRequestParams::GetChannelIndex(const string& channel) const {
202 if (channel == kChannelsByStability[t])
216 return download_channel_ == "canary-channel" ? image_props_.canary_product_id