2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class Environment < ApplicationRecord
|
2019-02-15 15:39:39 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
2019-09-30 21:07:59 +05:30
|
|
|
include ReactiveCaching
|
2020-04-22 19:07:51 +05:30
|
|
|
include FastDestroyAll::Helpers
|
2021-01-03 14:25:43 +05:30
|
|
|
include Presentable
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
self.reactive_cache_refresh_interval = 1.minute
|
|
|
|
self.reactive_cache_lifetime = 55.seconds
|
2020-03-13 15:44:24 +05:30
|
|
|
self.reactive_cache_hard_limit = 10.megabytes
|
2020-05-24 23:13:21 +05:30
|
|
|
self.reactive_cache_work_type = :external_dependency
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
PRODUCTION_ENVIRONMENT_IDENTIFIERS = %w[prod production].freeze
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
belongs_to :project, required: true
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
use_fast_destroy :all_deployments
|
|
|
|
|
|
|
|
has_many :all_deployments, class_name: 'Deployment'
|
|
|
|
has_many :deployments, -> { visible }
|
2019-12-21 20:55:43 +05:30
|
|
|
has_many :successful_deployments, -> { success }, class_name: 'Deployment'
|
2020-03-13 15:44:24 +05:30
|
|
|
has_many :active_deployments, -> { active }, class_name: 'Deployment'
|
|
|
|
has_many :prometheus_alerts, inverse_of: :environment
|
2020-04-22 19:07:51 +05:30
|
|
|
has_many :metrics_dashboard_annotations, class_name: 'Metrics::Dashboard::Annotation', inverse_of: :environment
|
|
|
|
has_many :self_managed_prometheus_alert_events, inverse_of: :environment
|
2020-07-28 23:09:34 +05:30
|
|
|
has_many :alert_management_alerts, class_name: 'AlertManagement::Alert', inverse_of: :environment
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
has_one :last_deployment, -> { success.order('deployments.id DESC') }, class_name: 'Deployment'
|
2019-12-26 22:10:19 +05:30
|
|
|
has_one :last_deployable, through: :last_deployment, source: 'deployable', source_type: 'CommitStatus'
|
|
|
|
has_one :last_pipeline, through: :last_deployable, source: 'pipeline'
|
|
|
|
has_one :last_visible_deployment, -> { visible.distinct_on_environment }, inverse_of: :environment, class_name: 'Deployment'
|
|
|
|
has_one :last_visible_deployable, through: :last_visible_deployment, source: 'deployable', source_type: 'CommitStatus'
|
|
|
|
has_one :last_visible_pipeline, through: :last_visible_deployable, source: 'pipeline'
|
2020-10-24 23:57:45 +05:30
|
|
|
has_one :latest_opened_most_severe_alert, -> { order_severity_with_open_prometheus_alert }, class_name: 'AlertManagement::Alert', inverse_of: :environment
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
before_validation :nullify_external_url
|
2017-08-17 22:00:37 +05:30
|
|
|
before_validation :generate_slug, if: ->(env) { env.slug.blank? }
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
before_save :set_environment_type
|
2019-09-30 21:07:59 +05:30
|
|
|
after_save :clear_reactive_cache!
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
validates :name,
|
|
|
|
presence: true,
|
|
|
|
uniqueness: { scope: :project_id },
|
2017-08-17 22:00:37 +05:30
|
|
|
length: { maximum: 255 },
|
2016-06-16 23:09:34 +05:30
|
|
|
format: { with: Gitlab::Regex.environment_name_regex,
|
|
|
|
message: Gitlab::Regex.environment_name_regex_message }
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :slug,
|
|
|
|
presence: true,
|
|
|
|
uniqueness: { scope: :project_id },
|
|
|
|
length: { maximum: 24 },
|
|
|
|
format: { with: Gitlab::Regex.environment_slug_regex,
|
|
|
|
message: Gitlab::Regex.environment_slug_regex_message }
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
validates :external_url,
|
|
|
|
length: { maximum: 255 },
|
|
|
|
allow_nil: true,
|
2019-07-31 22:56:46 +05:30
|
|
|
addressable_url: true
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
delegate :stop_action, :manual_actions, to: :last_deployment, allow_nil: true
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
scope :available, -> { with_state(:available) }
|
|
|
|
scope :stopped, -> { with_state(:stopped) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
scope :order_by_last_deployed_at, -> do
|
|
|
|
order(Gitlab::Database.nulls_first_order("(#{max_deployment_id_sql})", 'ASC'))
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
scope :order_by_last_deployed_at_desc, -> do
|
|
|
|
order(Gitlab::Database.nulls_last_order("(#{max_deployment_id_sql})", 'DESC'))
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
scope :order_by_name, -> { order('environments.name ASC') }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
scope :in_review_folder, -> { where(environment_type: "review") }
|
2018-12-13 13:39:08 +05:30
|
|
|
scope :for_name, -> (name) { where(name: name) }
|
2019-10-12 21:52:04 +05:30
|
|
|
scope :preload_cluster, -> { preload(last_deployment: :cluster) }
|
2020-03-13 15:44:24 +05:30
|
|
|
scope :auto_stoppable, -> (limit) { available.where('auto_stop_at < ?', Time.zone.now).limit(limit) }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
##
|
|
|
|
# Search environments which have names like the given query.
|
|
|
|
# Do not set a large limit unless you've confirmed that it works on gitlab.com scale.
|
|
|
|
scope :for_name_like, -> (query, limit: 5) do
|
2019-12-04 20:38:33 +05:30
|
|
|
where(arel_table[:name].matches("#{sanitize_sql_like query}%")).limit(limit)
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
scope :for_project, -> (project) { where(project_id: project) }
|
|
|
|
scope :with_deployment, -> (sha) { where('EXISTS (?)', Deployment.select(1).where('deployments.environment_id = environments.id').where(sha: sha)) }
|
2019-12-26 22:10:19 +05:30
|
|
|
scope :unfoldered, -> { where(environment_type: nil) }
|
|
|
|
scope :with_rank, -> do
|
|
|
|
select('environments.*, rank() OVER (PARTITION BY project_id ORDER BY id DESC)')
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
scope :for_id, -> (id) { where(id: id) }
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
state_machine :state, initial: :available do
|
|
|
|
event :start do
|
|
|
|
transition stopped: :available
|
|
|
|
end
|
|
|
|
|
|
|
|
event :stop do
|
|
|
|
transition available: :stopped
|
|
|
|
end
|
|
|
|
|
|
|
|
state :available
|
|
|
|
state :stopped
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
after_transition do |environment|
|
|
|
|
environment.expire_etag_cache
|
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
def self.for_id_and_slug(id, slug)
|
|
|
|
find_by(id: id, slug: slug)
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def self.max_deployment_id_sql
|
|
|
|
Deployment.select(Deployment.arel_table[:id].maximum)
|
|
|
|
.where(Deployment.arel_table[:environment_id].eq(arel_table[:id]))
|
|
|
|
.to_sql
|
|
|
|
end
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
def self.pluck_names
|
|
|
|
pluck(:name)
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def self.pluck_unique_names
|
|
|
|
pluck('DISTINCT(environments.name)')
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
def self.find_or_create_by_name(name)
|
|
|
|
find_or_create_by(name: name)
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
def self.valid_states
|
|
|
|
self.state_machine.states.map(&:name)
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
class << self
|
|
|
|
##
|
|
|
|
# This method returns stop actions (jobs) for multiple environments within one
|
|
|
|
# query. It's useful to avoid N+1 problem.
|
|
|
|
#
|
|
|
|
# NOTE: The count of environments should be small~medium (e.g. < 5000)
|
|
|
|
def stop_actions
|
|
|
|
cte = cte_for_deployments_with_stop_action
|
|
|
|
ci_builds = Ci::Build.arel_table
|
|
|
|
|
|
|
|
inner_join_stop_actions = ci_builds.join(cte.table).on(
|
|
|
|
ci_builds[:project_id].eq(cte.table[:project_id])
|
|
|
|
.and(ci_builds[:ref].eq(cte.table[:ref]))
|
|
|
|
.and(ci_builds[:name].eq(cte.table[:on_stop]))
|
|
|
|
).join_sources
|
|
|
|
|
|
|
|
pipeline_ids = ci_builds.join(cte.table).on(
|
|
|
|
ci_builds[:id].eq(cte.table[:deployable_id])
|
|
|
|
).project(:commit_id)
|
|
|
|
|
|
|
|
Ci::Build.joins(inner_join_stop_actions)
|
|
|
|
.with(cte.to_arel)
|
|
|
|
.where(ci_builds[:commit_id].in(pipeline_ids))
|
2020-07-28 23:09:34 +05:30
|
|
|
.where(status: Ci::HasStatus::BLOCKED_STATUS)
|
2020-03-13 15:44:24 +05:30
|
|
|
.preload_project_and_pipeline_project
|
|
|
|
.preload(:user, :metadata, :deployment)
|
|
|
|
end
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
def count_by_state
|
|
|
|
environments_count_by_state = group(:state).count
|
|
|
|
|
|
|
|
valid_states.each_with_object({}) do |state, count_hash|
|
|
|
|
count_hash[state] = environments_count_by_state[state.to_s] || 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def cte_for_deployments_with_stop_action
|
|
|
|
Gitlab::SQL::CTE.new(:deployments_with_stop_action,
|
|
|
|
Deployment.where(environment_id: select(:id))
|
|
|
|
.distinct_on_environment
|
|
|
|
.stoppable)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_prometheus_reactive_cache!(query_name)
|
|
|
|
cluster_prometheus_adapter&.clear_prometheus_reactive_cache!(query_name, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cluster_prometheus_adapter
|
|
|
|
@cluster_prometheus_adapter ||= ::Gitlab::Prometheus::Adapter.new(project, deployment_platform&.cluster).cluster_prometheus_adapter
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def predefined_variables
|
2018-05-09 12:01:36 +05:30
|
|
|
Gitlab::Ci::Variables::Collection.new
|
|
|
|
.append(key: 'CI_ENVIRONMENT_NAME', value: name)
|
|
|
|
.append(key: 'CI_ENVIRONMENT_SLUG', value: slug)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def recently_updated_on_branch?(ref)
|
|
|
|
ref.to_s == last_deployment.try(:ref)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
def nullify_external_url
|
|
|
|
self.external_url = nil if self.external_url.blank?
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def set_environment_type
|
|
|
|
names = name.split('/')
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
self.environment_type = names.many? ? names.first : nil
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
def includes_commit?(commit)
|
|
|
|
return false unless last_deployment
|
|
|
|
|
|
|
|
last_deployment.includes_commit?(commit)
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def last_deployed_at
|
|
|
|
last_deployment.try(:created_at)
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def update_merge_request_metrics?
|
2021-01-03 14:25:43 +05:30
|
|
|
PRODUCTION_ENVIRONMENT_IDENTIFIERS.include?(folder_name.downcase)
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
def ref_path
|
2018-03-17 18:26:18 +05:30
|
|
|
"refs/#{Repository::REF_ENVIRONMENTS}/#{slug}"
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def formatted_external_url
|
2019-07-07 11:18:12 +05:30
|
|
|
return unless external_url
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
external_url.gsub(%r{\A.*?://}, '')
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def stop_action_available?
|
2016-11-03 12:29:30 +05:30
|
|
|
available? && stop_action.present?
|
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def cancel_deployment_jobs!
|
|
|
|
jobs = active_deployments.with_deployable
|
|
|
|
jobs.each do |deployment|
|
|
|
|
# guard against data integrity issues,
|
|
|
|
# for example https://gitlab.com/gitlab-org/gitlab/-/issues/218659#note_348823660
|
|
|
|
next unless deployment.deployable
|
|
|
|
|
|
|
|
Gitlab::OptimisticLocking.retry_lock(deployment.deployable) do |deployable|
|
|
|
|
deployable.cancel! if deployable&.cancelable?
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
Gitlab::ErrorTracking.track_exception(e, environment_id: id, deployment_id: deployment.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def stop_with_action!(current_user)
|
|
|
|
return unless available?
|
|
|
|
|
|
|
|
stop!
|
|
|
|
stop_action&.play(current_user)
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def reset_auto_stop
|
|
|
|
update_column(:auto_stop_at, nil)
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def actions_for(environment)
|
|
|
|
return [] unless manual_actions
|
|
|
|
|
|
|
|
manual_actions.select do |action|
|
|
|
|
action.expanded_environment_name == environment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_terminals?
|
2019-09-30 21:07:59 +05:30
|
|
|
available? && deployment_platform.present? && last_deployment.present?
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def terminals
|
2019-09-30 21:07:59 +05:30
|
|
|
with_reactive_cache do |data|
|
|
|
|
deployment_platform.terminals(self, data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def calculate_reactive_cache
|
|
|
|
return unless has_terminals? && !project.pending_delete?
|
|
|
|
|
|
|
|
deployment_platform.calculate_reactive_cache_for(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def deployment_namespace
|
|
|
|
strong_memoize(:kubernetes_namespace) do
|
2019-10-12 21:52:04 +05:30
|
|
|
deployment_platform.cluster.kubernetes_namespace_for(self) if deployment_platform
|
2019-09-30 21:07:59 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def has_metrics?
|
2020-03-13 15:44:24 +05:30
|
|
|
available? && (prometheus_adapter&.configured? || has_sample_metrics?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_sample_metrics?
|
|
|
|
!!ENV['USE_SAMPLE_METRICS']
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
def has_opened_alert?
|
|
|
|
latest_opened_most_severe_alert.present?
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def metrics
|
2020-03-13 15:44:24 +05:30
|
|
|
prometheus_adapter.query(:environment, self) if has_metrics_and_can_query?
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
def prometheus_status
|
|
|
|
deployment_platform&.cluster&.application_prometheus&.status_name
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def additional_metrics(*args)
|
2020-03-13 15:44:24 +05:30
|
|
|
return unless has_metrics_and_can_query?
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
prometheus_adapter.query(:additional_metrics_environment, self, *args.map(&:to_f))
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def prometheus_adapter
|
2020-03-13 15:44:24 +05:30
|
|
|
@prometheus_adapter ||= Gitlab::Prometheus::Adapter.new(project, deployment_platform&.cluster).prometheus_adapter
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def slug
|
|
|
|
super.presence || generate_slug
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def external_url_for(path, commit_sha)
|
|
|
|
return unless self.external_url
|
|
|
|
|
|
|
|
public_path = project.public_path_for_source_path(path, commit_sha)
|
|
|
|
return unless public_path
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
[external_url.delete_suffix('/'), public_path.delete_prefix('/')].join('/')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def expire_etag_cache
|
|
|
|
Gitlab::EtagCaching::Store.new.tap do |store|
|
|
|
|
store.touch(etag_cache_key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def etag_cache_key
|
|
|
|
Gitlab::Routing.url_helpers.project_environments_path(
|
|
|
|
project,
|
|
|
|
format: :json)
|
|
|
|
end
|
|
|
|
|
|
|
|
def folder_name
|
|
|
|
self.environment_type || self.name
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def name_without_type
|
|
|
|
@name_without_type ||= name.delete_prefix("#{environment_type}/")
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def deployment_platform
|
2019-02-15 15:39:39 +05:30
|
|
|
strong_memoize(:deployment_platform) do
|
|
|
|
project.deployment_platform(environment: self.name)
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
def knative_services_finder
|
|
|
|
if last_deployment&.cluster
|
|
|
|
Clusters::KnativeServicesFinder.new(last_deployment.cluster, self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def auto_stop_in
|
2020-06-23 00:09:42 +05:30
|
|
|
auto_stop_at - Time.current if auto_stop_at
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def auto_stop_in=(value)
|
|
|
|
return unless value
|
|
|
|
return unless parsed_result = ChronicDuration.parse(value)
|
|
|
|
|
|
|
|
self.auto_stop_at = parsed_result.seconds.from_now
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
def elastic_stack_available?
|
2020-11-24 15:15:51 +05:30
|
|
|
!!deployment_platform&.cluster&.application_elastic_stack_available?
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
private
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def has_metrics_and_can_query?
|
|
|
|
has_metrics? && prometheus_adapter.can_query?
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
def generate_slug
|
|
|
|
self.slug = Gitlab::Slug::Environment.new(name).generate
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
# Overrides ReactiveCaching default to activate limit checking behind a FF
|
|
|
|
def reactive_cache_limit_enabled?
|
|
|
|
Feature.enabled?(:reactive_caching_limit_environment, project)
|
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
Environment.prepend_if_ee('EE::Environment')
|