Bird
0
0

A microservice continues to use old configuration values after deployment despite updates. What is the most probable reason?

medium📝 Analysis Q6 of 15
Microservices - Configuration and Secrets Management
A microservice continues to use old configuration values after deployment despite updates. What is the most probable reason?
AThe service did not reload or refresh its configuration after deployment
BThe configuration file was deleted accidentally
CThe microservice code has a syntax error preventing config loading
DThe network connection to the config server is too fast
Step-by-Step Solution
Solution:
  1. Step 1: Understand config update behavior

    When config changes, microservices often need to reload or refresh config to apply updates.
  2. Step 2: Analyze options

    The service did not reload or refresh its configuration after deployment correctly identifies that failure to reload config causes old values to persist. The configuration file was deleted accidentally would cause failure to load config, not old values. The microservice code has a syntax error preventing config loading is unrelated to config updates. The network connection to the config server is too fast is nonsensical.
  3. Final Answer:

    The service did not reload or refresh its configuration after deployment -> Option A
  4. Quick Check:

    Config updates require reload or refresh [OK]
Quick Trick: Config changes need reload to take effect [OK]
Common Mistakes:
  • Assuming config updates apply automatically without reload
  • Blaming network speed for config issues
  • Confusing config file deletion with stale config usage

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Microservices Quizzes